Fix int64 types for ARM

This commit is contained in:
2017-04-08 20:05:54 -05:00
parent 1f4cde9ef7
commit 7101c68e74
+1 -1
View File
@@ -14,7 +14,7 @@ typedef unsigned short uint16_t;
typedef int int32_t;
typedef unsigned int uint32_t;
typedef unsigned uint_t;
#if defined(_WIN32) || defined(__APPLE__)
#if defined(_WIN32) || defined(__APPLE__) || defined(__arm__)
typedef long long int64_t;
typedef unsigned long long uint64_t;
#else