From 97045f85a18533ae6bec0209f6bc8413217f0e1c Mon Sep 17 00:00:00 2001 From: Sven van Haastregt Date: Thu, 19 Sep 2024 16:59:43 +0200 Subject: [PATCH] [NFC] math_brute_force: remove warning options (#2061) All of these are already set in the top-level `CMakeLists.txt` nowadays, so no need to repeat them in the test's own `CMakeLists.txt`. Signed-off-by: Sven van Haastregt --- test_conformance/math_brute_force/CMakeLists.txt | 4 ---- 1 file changed, 4 deletions(-) diff --git a/test_conformance/math_brute_force/CMakeLists.txt b/test_conformance/math_brute_force/CMakeLists.txt index d53911e4..35d4e0b3 100644 --- a/test_conformance/math_brute_force/CMakeLists.txt +++ b/test_conformance/math_brute_force/CMakeLists.txt @@ -54,10 +54,6 @@ set(${MODULE_NAME}_SOURCES utility.h ) -# math_brute_force compiles cleanly with -Wall (except for a few remaining -# warnings), but other tests not (yet); so enable -Wall locally. -set_gnulike_module_compile_flags("-Wall -Wno-strict-aliasing -Wno-unknown-pragmas") - add_cxx_flag_if_supported(-ffp-contract=off) include(../CMakeCommon.txt)