Disable C4530 in no_exceptions_support_test.cpp

This commit is contained in:
Peter Dimov
2021-11-01 02:32:49 +02:00
parent da3c89dc5b
commit 9efeed68cb

View File

@ -8,6 +8,10 @@
// http://www.boost.org/LICENSE_1_0.txt
//
#if defined(_MSC_VER)
# pragma warning(disable: 4530) // C++ exception handler used
#endif
#include <boost/core/no_exceptions_support.hpp>
#include <boost/core/quick_exit.hpp>
#include <boost/throw_exception.hpp>