Fix an issue with MSVC int64 type difference

This commit is contained in:
2016-12-14 22:46:47 -06:00
parent 414580fa7b
commit c9a1310e11
+4
View File
@@ -14,7 +14,11 @@ typedef unsigned short uint16_t;
typedef int int32_t;
typedef unsigned int uint32_t;
typedef unsigned uint_t;
#ifdef _MSC_VER
typedef long long int64_t;
#else
typedef long int64_t;
#endif
typedef unsigned long long uint64_t;
namespace ox {