summaryrefslogtreecommitdiff
path: root/json_inttypes.h
diff options
context:
space:
mode:
authorAnatol Belski <ab@php.net>2013-06-04 20:17:12 +0200
committerAnatol Belski <ab@php.net>2013-06-04 20:17:12 +0200
commit48ba6b8c0639e8b9fc1b81ce3e7b8c62191fb639 (patch)
tree99507a7452794abb8ae889500531cc47d040bb81 /json_inttypes.h
parente48a25cfbb18449505edf6205cb069e346dce0f8 (diff)
downloadjson-c-48ba6b8c0639e8b9fc1b81ce3e7b8c62191fb639.tar.gz
fixe int32_t definition for VC11
int32_t is nowhere in msvc, so the version check could be even removed
Diffstat (limited to 'json_inttypes.h')
-rw-r--r--json_inttypes.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/json_inttypes.h b/json_inttypes.h
index 2f84ade..bfe1060 100644
--- a/json_inttypes.h
+++ b/json_inttypes.h
@@ -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;