Fix the _MSC_VER check so it compiles on non-windows compilers. Issue#91

This commit is contained in:
Eric Haszlakiewicz
2013-06-23 19:12:14 -05:00
parent 5e8df40523
commit c62965660b

View File

@@ -4,7 +4,7 @@
#include "json_config.h"
#if defined(_MSC_VER) && _MSC_VER =< 1700
#if defined(_MSC_VER) && _MSC_VER <= 1700
/* Anything less than Visual Studio C++ 10 is missing stdint.h and inttypes.h */
typedef __int32 int32_t;