summaryrefslogtreecommitdiffstats
path: root/src/Server.h
diff options
context:
space:
mode:
authorMattes D <github@xoft.cz>2014-01-06 18:15:41 +0100
committerMattes D <github@xoft.cz>2014-01-06 18:15:41 +0100
commit6dd44e623070425b8e242858a89b99a57c98b9d7 (patch)
tree34ffc9a7ed7e803270e86467429a1b99b5cb9eb9 /src/Server.h
parentExported cWorld::BroadcastBlockAction(). (diff)
parentUndid the changes to cryptlib.cpp. (diff)
downloadcuberite-6dd44e623070425b8e242858a89b99a57c98b9d7.tar
cuberite-6dd44e623070425b8e242858a89b99a57c98b9d7.tar.gz
cuberite-6dd44e623070425b8e242858a89b99a57c98b9d7.tar.bz2
cuberite-6dd44e623070425b8e242858a89b99a57c98b9d7.tar.lz
cuberite-6dd44e623070425b8e242858a89b99a57c98b9d7.tar.xz
cuberite-6dd44e623070425b8e242858a89b99a57c98b9d7.tar.zst
cuberite-6dd44e623070425b8e242858a89b99a57c98b9d7.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