diff options
author | Vincent_Michael <Vincent_Michael@gmx.de> | 2013-03-09 01:47:46 +0100 |
---|---|---|
committer | Vincent_Michael <Vincent_Michael@gmx.de> | 2013-03-09 01:49:05 +0100 |
commit | 8aaaaedbdd409188158e1517c9a9056022e850e9 (patch) | |
tree | 66b88eae5284951b0b190bda4fb08fdcfbeac495 | |
parent | 41c7f35a31b81cc58f8eda0a2e7b423c34413b52 (diff) |
Core: Fix warnings for msvc
-rw-r--r-- | dep/recastnavigation/Detour/DetourNavMesh.h | 2 | ||||
-rw-r--r-- | dep/recastnavigation/recast_hotfix1.diff | 2 | ||||
-rw-r--r-- | src/server/shared/Debugging/WheatyExceptionReport.cpp | 2 | ||||
-rw-r--r-- | src/server/shared/Debugging/WheatyExceptionReport.h | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/dep/recastnavigation/Detour/DetourNavMesh.h b/dep/recastnavigation/Detour/DetourNavMesh.h index 99e30c75142..b146631127a 100644 --- a/dep/recastnavigation/Detour/DetourNavMesh.h +++ b/dep/recastnavigation/Detour/DetourNavMesh.h @@ -21,7 +21,7 @@ #include "DetourAlloc.h" -#if defined(WIN32) && not defined(__MINGW32__) +#if defined(WIN32) && !defined(__MINGW32__) typedef unsigned __int64 uint64; #else #include <stdint.h> diff --git a/dep/recastnavigation/recast_hotfix1.diff b/dep/recastnavigation/recast_hotfix1.diff index 6e8fc3397e3..d370b0a68c8 100644 --- a/dep/recastnavigation/recast_hotfix1.diff +++ b/dep/recastnavigation/recast_hotfix1.diff @@ -7,7 +7,7 @@ index 52d2c50..99e30c7 100644 #include "DetourAlloc.h" -#ifdef WIN32 -+#if defined(WIN32) && not defined(__MINGW32__) ++#if defined(WIN32) && !defined(__MINGW32__) typedef unsigned __int64 uint64; #else #include <stdint.h> diff --git a/src/server/shared/Debugging/WheatyExceptionReport.cpp b/src/server/shared/Debugging/WheatyExceptionReport.cpp index 19db228913b..d07e579ab5d 100644 --- a/src/server/shared/Debugging/WheatyExceptionReport.cpp +++ b/src/server/shared/Debugging/WheatyExceptionReport.cpp @@ -3,7 +3,7 @@ // MSDN Magazine, 2002 // FILE: WheatyExceptionReport.CPP //========================================== -#if PLATFORM == PLATFORM_WINDOWS && not defined(__MINGW32__) +#if PLATFORM == PLATFORM_WINDOWS && !defined(__MINGW32__) #define WIN32_LEAN_AND_MEAN #pragma warning(disable:4996) #pragma warning(disable:4312) diff --git a/src/server/shared/Debugging/WheatyExceptionReport.h b/src/server/shared/Debugging/WheatyExceptionReport.h index 684b10e9b9a..582f1f157b8 100644 --- a/src/server/shared/Debugging/WheatyExceptionReport.h +++ b/src/server/shared/Debugging/WheatyExceptionReport.h @@ -1,7 +1,7 @@ #ifndef _WHEATYEXCEPTIONREPORT_ #define _WHEATYEXCEPTIONREPORT_ -#if PLATFORM == PLATFORM_WINDOWS && not defined(__MINGW32__) +#if PLATFORM == PLATFORM_WINDOWS && !defined(__MINGW32__) #include <dbghelp.h> |