From 3c0115921ee2448d0a6e952eb43860d971bfb7a7 Mon Sep 17 00:00:00 2001 From: DarthArgus Date: Tue, 13 Dec 2016 00:10:35 +0000 Subject: [PATCH] It's 2016 and C++11 supports these natively --- .../sharedFoundationTypes/src/linux/FoundationTypesLinux.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/engine/shared/library/sharedFoundationTypes/src/linux/FoundationTypesLinux.h b/engine/shared/library/sharedFoundationTypes/src/linux/FoundationTypesLinux.h index 386c4ffb..bd4bdc9d 100755 --- a/engine/shared/library/sharedFoundationTypes/src/linux/FoundationTypesLinux.h +++ b/engine/shared/library/sharedFoundationTypes/src/linux/FoundationTypesLinux.h @@ -10,6 +10,7 @@ #define PLATFORM_LINUX #include +#include // ====================================================================== // basic types that we assume to be around @@ -20,8 +21,8 @@ typedef unsigned long uint32; typedef signed char int8; typedef signed short int16; typedef signed long int32; -typedef signed long long int int64; -typedef unsigned long long int uint64; +typedef int64_t int64; +typedef uint64_t uint64; typedef float real; typedef FILE* FILE_HANDLE;