Commit 324c9c52 by Wenzel Jakob

minor Intel compiler fix

parent c7c7705f
...@@ -12,7 +12,7 @@ ...@@ -12,7 +12,7 @@
#include "pybind11.h" #include "pybind11.h"
#include <type_traits> #include <type_traits>
#if defined(__clang__) #if defined(__clang__) && !defined(__INTEL_COMPILER)
# pragma clang diagnostic ignored "-Wunsequenced" // multiple unsequenced modifications to 'self' (when using def(py::self OP Type())) # pragma clang diagnostic ignored "-Wunsequenced" // multiple unsequenced modifications to 'self' (when using def(py::self OP Type()))
#endif #endif
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment