Fix for isnan compile issue on windows (second try).

This commit is contained in:
Brecht Van Lommel 2012-04-16 09:13:32 +00:00
parent 1492754c8f
commit 869c69b149

@ -30,6 +30,7 @@
#define GRID_DIMENSION 20
#if defined(_WIN32) && !defined(__MINGW32__)
#define isnan(n) _isnan(n)
#define LONG __int64
#else
#include <stdint.h>