diff --git a/3rdparty/discord-rpc/src/serialization.h b/3rdparty/discord-rpc/src/serialization.h index 9c2c87cb7..b9c2dc682 100644 --- a/3rdparty/discord-rpc/src/serialization.h +++ b/3rdparty/discord-rpc/src/serialization.h @@ -1,23 +1,9 @@ #pragma once -#ifdef _MSC_VER -# pragma warning(push) - -# pragma warning(disable : 4061) // enum is not explicitly handled by a case label -# pragma warning(disable : 4365) // signed/unsigned mismatch -# pragma warning(disable : 4464) // relative include path contains -# pragma warning(disable : 4668) // is not defined as a preprocessor macro -# pragma warning(disable : 6313) // Incorrect operator -#endif - #include #include #include -#ifdef _MSC_VER -# pragma warning(pop) -#endif - namespace discord_rpc { // if only there was a standard library function for this