From ab3fe0053d41ea80be5b0d11e7e9c49852810021 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Ho=C5=99e=C5=88ovsk=C3=BD?= Date: Mon, 6 Sep 2021 23:34:26 +0200 Subject: [PATCH] Remove superfluous warning suppression from console reporter --- src/catch2/reporters/catch_reporter_console.hpp | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/src/catch2/reporters/catch_reporter_console.hpp b/src/catch2/reporters/catch_reporter_console.hpp index b61e3115..0cf8589c 100644 --- a/src/catch2/reporters/catch_reporter_console.hpp +++ b/src/catch2/reporters/catch_reporter_console.hpp @@ -11,14 +11,6 @@ #include #include -#if defined(_MSC_VER) -#pragma warning(push) -#pragma warning(disable:4061) // Not all labels are EXPLICITLY handled in switch - // Note that 4062 (not all labels are handled - // and default is missing) is enabled -#endif - - namespace Catch { // Fwd decls struct SummaryColumn; @@ -81,8 +73,4 @@ namespace Catch { } // end namespace Catch -#if defined(_MSC_VER) -#pragma warning(pop) -#endif - #endif // CATCH_REPORTER_CONSOLE_HPP_INCLUDED