From 9efeed68cb65988d240e39796e0cb34619f11bf4 Mon Sep 17 00:00:00 2001 From: Peter Dimov Date: Mon, 1 Nov 2021 02:32:49 +0200 Subject: [PATCH] Disable C4530 in no_exceptions_support_test.cpp --- test/no_exceptions_support_test.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/test/no_exceptions_support_test.cpp b/test/no_exceptions_support_test.cpp index 64533fa..e5dc9ac 100644 --- a/test/no_exceptions_support_test.cpp +++ b/test/no_exceptions_support_test.cpp @@ -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 #include #include