We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1483039 commit 87d5426Copy full SHA for 87d5426
test/unittest/CMakeLists.txt
@@ -10,7 +10,8 @@ set(CMAKE_CXX_EXTENSIONS OFF)
10
11
if(NOT MSVC)
12
message("Not MSVC")
13
- add_compile_options(-Wall -Wextra -Wshadow -Wconversion -Wno-sign-conversion -Werror)
+ # no-implicit-int-float-conversion: for suppressing warning from gtest
14
+ add_compile_options(-Wall -Wextra -Wshadow -Wconversion -Wno-sign-conversion -Wno-implicit-int-float-conversion -Werror)
15
add_compile_options(-fsanitize=undefined,address -fno-sanitize-recover=all)
16
add_link_options(-fsanitize=undefined,address)
17
else()
0 commit comments