summaryrefslogtreecommitdiffstatshomepage
path: root/src/lib/web/json/config.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/web/json/config.h')
-rw-r--r--src/lib/web/json/config.h22
1 files changed, 11 insertions, 11 deletions
diff --git a/src/lib/web/json/config.h b/src/lib/web/json/config.h
index 7609d45e7a0..9ca6311c20b 100644
--- a/src/lib/web/json/config.h
+++ b/src/lib/web/json/config.h
@@ -71,23 +71,23 @@
#endif // if !defined(JSONCPP_DEPRECATED)
namespace Json {
- typedef int Int;
- typedef unsigned int UInt;
+ typedef int Int;
+ typedef unsigned int UInt;
# if defined(JSON_NO_INT64)
- typedef int LargestInt;
- typedef unsigned int LargestUInt;
+ typedef int LargestInt;
+ typedef unsigned int LargestUInt;
# undef JSON_HAS_INT64
# else // if defined(JSON_NO_INT64)
- // For Microsoft Visual use specific types as long long is not supported
+ // For Microsoft Visual use specific types as long long is not supported
# if defined(_MSC_VER) // Microsoft Visual Studio
- typedef __int64 Int64;
- typedef unsigned __int64 UInt64;
+ typedef __int64 Int64;
+ typedef unsigned __int64 UInt64;
# else // if defined(_MSC_VER) // Other platforms, use long long
- typedef long long int Int64;
- typedef unsigned long long int UInt64;
+ typedef long long int Int64;
+ typedef unsigned long long int UInt64;
# endif // if defined(_MSC_VER)
- typedef Int64 LargestInt;
- typedef UInt64 LargestUInt;
+ typedef Int64 LargestInt;
+ typedef UInt64 LargestUInt;
# define JSON_HAS_INT64
# endif // if defined(JSON_NO_INT64)
} // end namespace Json