minor Intel compiler fix

This commit is contained in:
Wenzel Jakob 2016-08-26 16:50:11 +02:00
parent c7c7705f86
commit 324c9c521b

View File

@ -12,7 +12,7 @@
#include "pybind11.h"
#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()))
#endif