diff options
| author | Amlal El Mahrouss <amlalelmahrouss@icloud.com> | 2024-02-04 20:32:18 +0100 |
|---|---|---|
| committer | Amlal El Mahrouss <amlalelmahrouss@icloud.com> | 2024-02-04 20:32:18 +0100 |
| commit | b76f26d281c77e3fa028d4217a1456c43ab68d06 (patch) | |
| tree | 66cebff0951c52fbf0b5289ca4c1ee3584e33776 /Private/NewKit | |
| parent | 9fe3b6e1e2447a11644307e83df2b109b24fe0d1 (diff) | |
HCR-11 : Found the reason why it doesn't work, fixing it tomorrow.
Signed-off-by: Amlal El Mahrouss <amlalelmahrouss@icloud.com>
Diffstat (limited to 'Private/NewKit')
| -rw-r--r-- | Private/NewKit/Defines.hpp | 8 |
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; |
