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 dd0bbcf commit 4b2fe43Copy full SHA for 4b2fe43
core/BUILD
@@ -25,6 +25,7 @@ config_setting(
25
26
# IMPORTANT: Keep in sync with instrument-hooks/ci.yml (COMMON_CFLAGS)
27
instrument_hooks_cflags = [
28
+ "-Wno-format",
29
"-Wno-format-security",
30
"-Wno-unused-but-set-variable",
31
"-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