Skip to content

Commit 4b2fe43

Browse files
committed
fix: ignore format errors
1 parent dd0bbcf commit 4b2fe43

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

core/BUILD

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ config_setting(
2525

2626
# IMPORTANT: Keep in sync with instrument-hooks/ci.yml (COMMON_CFLAGS)
2727
instrument_hooks_cflags = [
28+
"-Wno-format",
2829
"-Wno-format-security",
2930
"-Wno-unused-but-set-variable",
3031
"-Wno-unused-const-variable",

core/CMakeLists.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ option(CODSPEED_STRICT_WARNINGS "Enable strict warnings" OFF)
4545
if(CMAKE_CXX_COMPILER_ID MATCHES "GNU|Clang")
4646
# IMPORTANT: Keep in sync with instrument-hooks/ci.yml (COMMON_CFLAGS)
4747
set(INSTRUMENT_HOOKS_CFLAGS
48+
-Wno-format
4849
-Wno-format-security
4950
-Wno-unused-but-set-variable
5051
-Wno-unused-const-variable

0 commit comments

Comments
 (0)