From fe75308fdb158455749f72b45c54a86a2e987e44 Mon Sep 17 00:00:00 2001 From: Andrei Kortunov Date: Thu, 26 Mar 2020 14:51:14 +0400 Subject: [PATCH] Disable warning C5204 which come from Boost library --- CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index 58376a7ce..1eb69c568 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -716,6 +716,7 @@ if (WIN32) # caused by boost 4191 # 'type cast' : unsafe conversion (1.56, thread_primitives.hpp, normally off) 4643 # Forward declaring 'X' in namespace std is not permitted by the C++ Standard. (in *_std_fwd.h files) + 5204 # Class has virtual functions, but its trivial destructor is not virtual # caused by MyGUI 4275 # non dll-interface class 'std::exception' used as base for dll-interface class 'MyGUI::Exception'