We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 178a4b0 commit 8409dc0Copy full SHA for 8409dc0
json_inttypes.h
@@ -4,13 +4,15 @@
4
5
#include "json_config.h"
6
7
-#if defined(_MSC_VER) && _MSC_VER < 1600
+#if defined(_MSC_VER) && _MSC_VER < 1700
8
9
/* Anything less than Visual Studio C++ 10 is missing stdint.h and inttypes.h */
10
typedef __int32 int32_t;
11
#define INT32_MIN ((int32_t)_I32_MIN)
12
#define INT32_MAX ((int32_t)_I32_MAX)
13
typedef __int64 int64_t;
14
+#define INT64_MIN ((int64_t)_I64_MIN)
15
+#define INT64_MAX ((int64_t)_I64_MAX)
16
#define PRId64 "I64d"
17
#define SCNd64 "I64d"
18
0 commit comments