Skip to content

Commit

Permalink
Use int64_t for 64bit ints
Browse files Browse the repository at this point in the history
  • Loading branch information
cdunn2001 committed Aug 22, 2016
1 parent 80a82ea commit b9afdf1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions include/json/config.h
Original file line number Diff line number Diff line change
Expand Up @@ -152,8 +152,8 @@ typedef unsigned int LargestUInt;
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 int64_t Int64;
typedef uint64_t UInt64;
#endif // if defined(_MSC_VER)
typedef Int64 LargestInt;
typedef UInt64 LargestUInt;
Expand Down

0 comments on commit b9afdf1

Please sign in to comment.