From 4ac19c9816bf84ed1dc8769540a50adec5cf76c8 Mon Sep 17 00:00:00 2001 From: DarthArgus Date: Fri, 15 Jul 2016 05:48:31 +0000 Subject: [PATCH] icc didn't like the double underscores --- .../shared/library/sharedFoundation/src/linux/PlatformGlue.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/engine/shared/library/sharedFoundation/src/linux/PlatformGlue.h b/engine/shared/library/sharedFoundation/src/linux/PlatformGlue.h index 0cab423f..96544614 100755 --- a/engine/shared/library/sharedFoundation/src/linux/PlatformGlue.h +++ b/engine/shared/library/sharedFoundation/src/linux/PlatformGlue.h @@ -12,8 +12,8 @@ typedef unsigned short int WORD; typedef unsigned long int DWORD; typedef bool BOOL; -typedef long long __int64; //lint !e13 !e19 // Error: 13 (Bad type), Error: 19 (Useless declaration) // -TRF- Lint preprocessor discrepency, @todo look into this. -typedef __int64 LARGE_INTEGER; +typedef long long int64; //lint !e13 !e19 // Error: 13 (Bad type), Error: 19 (Useless declaration) // -TRF- Lint preprocessor discrepency, @todo look into this. +typedef int64 LARGE_INTEGER; const BOOL FALSE = 0; const BOOL TRUE = 1;