mirror of
https://github.com/ValveSoftware/GameNetworkingSockets.git
synced 2026-05-29 16:20:34 +00:00
minbase_types.h: unbreak build on Linux
I really wish this header didn't exist. Signed-off-by: Steven Noonan <steven@valvesoftware.com>
This commit is contained in:
@@ -75,7 +75,7 @@ typedef uint32 uint32_t;
|
||||
// NOTE: int64_t must match the compiler stdint.h definition
|
||||
// and so may not match the Steam int64. Mixing the two is
|
||||
// error-prone so always use the Steam non-_t types in Steam code.
|
||||
#if 0 && defined(COMPILER_GCC) && defined(PLATFORM_64BITS) && !defined(OSX) && !(defined(IOS) || defined(TVOS))
|
||||
#if defined(COMPILER_GCC) && defined(PLATFORM_64BITS) && !defined(__MINGW32_) && !defined(OSX) && !(defined(IOS) || defined(TVOS))
|
||||
#define INT64_DIFFERENT_FROM_INT64_T 1
|
||||
typedef long int int64_t;
|
||||
typedef unsigned long int uint64_t;
|
||||
|
||||
Reference in New Issue
Block a user