From 5cc9da9c794da4386c8188f0bfcd045d2d236f7b Mon Sep 17 00:00:00 2001 From: Ian Date: Fri, 24 Jan 2025 20:18:54 -0500 Subject: [PATCH] Disable issues with overflows in tests Signed-off-by: Ian --- tests/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt index a6a92b7..2ec86f5 100644 --- a/tests/CMakeLists.txt +++ b/tests/CMakeLists.txt @@ -41,7 +41,7 @@ if (MSVC) elseif (CMAKE_CXX_COMPILER_ID STREQUAL "GNU" OR CMAKE_CXX_COMPILER_ID STREQUAL "Clang") target_compile_options(ccmath-test PUBLIC - -Wall -Wextra -Wno-pedantic -Wno-unused-function -Wno-sign-conversion + -Wall -Wextra -Wno-pedantic -Wno-unused-function -Wno-sign-conversion -Wno-error=overflow ) endif ()