fixe int32_t definition for VC11

int32_t is nowhere in msvc, so the version check could be even removed
This commit is contained in:
Anatol Belski
2013-06-04 20:17:12 +02:00
parent e48a25cfbb
commit 48ba6b8c06

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;