Skip to content

Commit 1e97684

Browse files
committed
fix: ignore format errors
1 parent bdbf665 commit 1e97684

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
@@ -31,6 +31,7 @@ config_setting(
3131

3232
# IMPORTANT: Keep in sync with instrument-hooks/ci.yml (COMMON_CFLAGS)
3333
instrument_hooks_cflags = [
34+
"-Wno-format",
3435
"-Wno-format-security",
3536
"-Wno-unused-but-set-variable",
3637
"-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)