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:
Steven Noonan
2018-04-02 13:40:00 -07:00
parent 77542b8213
commit baf230b70d
+1 -1
View File
@@ -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;