Fixed bug #95 by changing _M_IX64 to _M_X64 as proposed by Jan Schlicht.

This commit is contained in:
Hauke Heibel 2010-10-27 11:07:38 +02:00
parent 3efff8c69e
commit 5d4ff3f99c

View File

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