aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorraczman <raczman@users.noreply.github.com>2013-09-20 16:08:26 -0700
committerraczman <raczman@users.noreply.github.com>2013-09-20 16:08:26 -0700
commit1ae6538ea6d0537381f9f3c52471a7c782bc5a9e (patch)
treeb71b426067f54b9c8f80f37e218462743f7bc5af /src
parent4ddad6ec60835266e0078da9f73a32892e117963 (diff)
parent0a6db17125ab80338f6cc2ee71bf67f1e536dcdd (diff)
Merge pull request #10827 from jackpoz/restore_warnings
Shared/Build: Restore disabled warnings on Visual Studio
Diffstat (limited to 'src')
-rw-r--r--src/server/shared/CompilerDefs.h5
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