diff options
Diffstat (limited to 'EASTL/source/thread_support.cpp')
-rw-r--r-- | EASTL/source/thread_support.cpp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/EASTL/source/thread_support.cpp b/EASTL/source/thread_support.cpp index 1b03629..3b8550e 100644 --- a/EASTL/source/thread_support.cpp +++ b/EASTL/source/thread_support.cpp @@ -13,7 +13,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(); #endif |