diff options
Diffstat (limited to 'EASTL/source/assert.cpp')
-rw-r--r-- | EASTL/source/assert.cpp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/EASTL/source/assert.cpp b/EASTL/source/assert.cpp index 7d32d5e..a4734af 100644 --- a/EASTL/source/assert.cpp +++ b/EASTL/source/assert.cpp @@ -15,7 +15,11 @@ #ifndef WIN32_LEAN_AND_MEAN #define WIN32_LEAN_AND_MEAN #endif - #include <Windows.h> + #ifdef __MINGW64__ + #include <windows.h> + #else + #include <Windows.h> + #endif EA_RESTORE_ALL_VC_WARNINGS(); #elif defined(EA_PLATFORM_ANDROID) #include <android/log.h> |