diff options
author | raczman <raczman@users.noreply.github.com> | 2013-09-20 16:08:26 -0700 |
---|---|---|
committer | raczman <raczman@users.noreply.github.com> | 2013-09-20 16:08:26 -0700 |
commit | 1ae6538ea6d0537381f9f3c52471a7c782bc5a9e (patch) | |
tree | b71b426067f54b9c8f80f37e218462743f7bc5af /src/server/shared/CompilerDefs.h | |
parent | 4ddad6ec60835266e0078da9f73a32892e117963 (diff) | |
parent | 0a6db17125ab80338f6cc2ee71bf67f1e536dcdd (diff) |
Merge pull request #10827 from jackpoz/restore_warnings
Shared/Build: Restore disabled warnings on Visual Studio
Diffstat (limited to 'src/server/shared/CompilerDefs.h')
-rw-r--r-- | src/server/shared/CompilerDefs.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/server/shared/CompilerDefs.h b/src/server/shared/CompilerDefs.h index 10cdaf4e179..909dcd1707b 100644 --- a/src/server/shared/CompilerDefs.h +++ b/src/server/shared/CompilerDefs.h @@ -55,11 +55,6 @@ # error "FATAL ERROR: Unknown compiler." #endif -#if COMPILER == COMPILER_MICROSOFT -# pragma warning( disable : 4267 ) // conversion from 'size_t' to 'int', possible loss of data -# pragma warning( disable : 4786 ) // identifier was truncated to '255' characters in the debug information -#endif - #if defined(__cplusplus) && __cplusplus == 201103L # define COMPILER_HAS_CPP11_SUPPORT 1 #else |