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 bdbf665 commit 1e97684Copy full SHA for 1e97684
core/BUILD
@@ -31,6 +31,7 @@ config_setting(
31
32
# IMPORTANT: Keep in sync with instrument-hooks/ci.yml (COMMON_CFLAGS)
33
instrument_hooks_cflags = [
34
+ "-Wno-format",
35
"-Wno-format-security",
36
"-Wno-unused-but-set-variable",
37
"-Wno-unused-const-variable",
core/CMakeLists.txt
@@ -45,6 +45,7 @@ option(CODSPEED_STRICT_WARNINGS "Enable strict warnings" OFF)
45
if(CMAKE_CXX_COMPILER_ID MATCHES "GNU|Clang")
46
47
set(INSTRUMENT_HOOKS_CFLAGS
48
+ -Wno-format
49
-Wno-format-security
50
-Wno-unused-but-set-variable
51
-Wno-unused-const-variable
0 commit comments