diff options
author | Mattes D <github@xoft.cz> | 2014-01-06 18:15:41 +0100 |
---|---|---|
committer | Mattes D <github@xoft.cz> | 2014-01-06 18:15:41 +0100 |
commit | 6dd44e623070425b8e242858a89b99a57c98b9d7 (patch) | |
tree | 34ffc9a7ed7e803270e86467429a1b99b5cb9eb9 /src/Server.h | |
parent | Exported cWorld::BroadcastBlockAction(). (diff) | |
parent | Undid the changes to cryptlib.cpp. (diff) | |
download | cuberite-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.h | 17 |
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 |