From a4c9061205d5b12cfe1f54f6e2c8b8d37534d369 Mon Sep 17 00:00:00 2001 From: Benedikt Hegner Date: Thu, 27 Jul 2023 12:31:37 +0200 Subject: [PATCH] temporarily remove eff C++ warning flag --- cmake/podioBuild.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmake/podioBuild.cmake b/cmake/podioBuild.cmake index acbf2a5e1..bd091ba53 100644 --- a/cmake/podioBuild.cmake +++ b/cmake/podioBuild.cmake @@ -50,7 +50,7 @@ macro(podio_set_compiler_flags) # build Catch2 locally without them SET(CXX_FLAGS_CMAKE_DEFAULTS "${CMAKE_CXX_FLAGS}") - SET(COMPILER_FLAGS -Wshadow -Wformat-security -Wno-long-long -Wdeprecated -fdiagnostics-color=auto -Wall -Wextra -pedantic -Weffc++) + SET(COMPILER_FLAGS -Wshadow -Wformat-security -Wno-long-long -Wdeprecated -fdiagnostics-color=auto -Wall -Wextra -pedantic ) # AppleClang/Clang specific warning flags if(CMAKE_CXX_COMPILER_ID MATCHES "^(Apple)?Clang$")