From a581a42c4facbd664dc57abdfd04c5ace01b21dd Mon Sep 17 00:00:00 2001 From: Peter Dimov Date: Mon, 1 Nov 2021 02:50:16 +0200 Subject: [PATCH] Disable C4577 in no_exceptions_support_test.cpp --- test/no_exceptions_support_test.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/test/no_exceptions_support_test.cpp b/test/no_exceptions_support_test.cpp index e5dc9ac..7e227b9 100644 --- a/test/no_exceptions_support_test.cpp +++ b/test/no_exceptions_support_test.cpp @@ -10,6 +10,7 @@ #if defined(_MSC_VER) # pragma warning(disable: 4530) // C++ exception handler used +# pragma warning(disable: 4577) // noexcept used without /EHsc #endif #include