summaryrefslogtreecommitdiffhomepage
path: root/Private/NewKit
diff options
context:
space:
mode:
Diffstat (limited to 'Private/NewKit')
-rw-r--r--Private/NewKit/Defines.hpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/Private/NewKit/Defines.hpp b/Private/NewKit/Defines.hpp
index cc8c141d..f46dd5bd 100644
--- a/Private/NewKit/Defines.hpp
+++ b/Private/NewKit/Defines.hpp
@@ -37,10 +37,10 @@ using Short = short;
using Int16 = short;
using UInt = unsigned int;
using UInt32 = unsigned int;
-using Long = long int;
-using Int64 = long int;
-using ULong = unsigned long int;
-using UInt64 = unsigned long int;
+using Long = __INT64_TYPE__;
+using Int64 = __INT64_TYPE__;
+using ULong = __UINT64_TYPE__;
+using UInt64 = __UINT64_TYPE__;
using Boolean = bool;
using Bool = bool;
using Char = char;