Do not attempt to include <intrin.h> on Windows CE

This commit is contained in:
Gael Guennebaud 2014-07-02 16:13:05 +02:00
parent bf334b8ae5
commit 0a8e4712d1

View File

@ -205,7 +205,7 @@
#endif #endif
// required for __cpuid, needs to be included after cmath // required for __cpuid, needs to be included after cmath
#if defined(_MSC_VER) && (defined(_M_IX86)||defined(_M_X64)) #if defined(_MSC_VER) && (defined(_M_IX86)||defined(_M_X64)) && (!defined(_WIN32_WCE))
#include <intrin.h> #include <intrin.h>
#endif #endif