summaryrefslogtreecommitdiffstats
path: root/src/Server.h
diff options
context:
space:
mode:
authorDiusrex <killakan002@hotmail.com>2014-01-05 23:06:17 +0100
committerDiusrex <killakan002@hotmail.com>2014-01-05 23:06:17 +0100
commit2dbe5033ca30ce791e3cb28cc59f47d52225b7ae (patch)
treee5c592a520ce2c334333a28659b07df5713eb46e /src/Server.h
parentMaking all of the useful level 4 warnings be active. (diff)
downloadcuberite-2dbe5033ca30ce791e3cb28cc59f47d52225b7ae.tar
cuberite-2dbe5033ca30ce791e3cb28cc59f47d52225b7ae.tar.gz
cuberite-2dbe5033ca30ce791e3cb28cc59f47d52225b7ae.tar.bz2
cuberite-2dbe5033ca30ce791e3cb28cc59f47d52225b7ae.tar.lz
cuberite-2dbe5033ca30ce791e3cb28cc59f47d52225b7ae.tar.xz
cuberite-2dbe5033ca30ce791e3cb28cc59f47d52225b7ae.tar.zst
cuberite-2dbe5033ca30ce791e3cb28cc59f47d52225b7ae.zip
Diffstat (limited to 'src/Server.h')
-rw-r--r--src/Server.h17
1 files changed, 16 insertions, 1 deletions
diff --git a/src/Server.h b/src/Server.h
index 1f94bb3da..e62c4c7b7 100644
--- a/src/Server.h
+++ b/src/Server.h
@@ -11,9 +11,24 @@
#include "OSSupport/SocketThreads.h"
#include "OSSupport/ListenThread.h"
+
+#include "RCONServer.h"
+
+#ifdef _MSC_VER
+ #pragma warning(push)
+ #pragma warning(disable:4127)
+ #pragma warning(disable:4244)
+ #pragma warning(disable:4231)
+ #pragma warning(disable:4189)
+ #pragma warning(disable:4702)
+#endif
+
#include "cryptopp/rsa.h"
#include "cryptopp/randpool.h"
-#include "RCONServer.h"
+
+#ifdef _MSC_VER
+ #pragma warning(pop)
+#endif