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 eaa5ee2 commit 9fd25eeCopy full SHA for 9fd25ee
core/BUILD
@@ -29,6 +29,8 @@ cc_library(
29
"-Wno-unused-parameter",
30
"-Wno-unused-but-set-variable",
31
"-Wno-type-limits",
32
+ "-Wno-format",
33
+ "-Wno-format-security",
34
],
35
}),
36
visibility = ["//visibility:public"],
core/CMakeLists.txt
@@ -35,6 +35,8 @@ if(CMAKE_CXX_COMPILER_ID MATCHES "GNU|Clang")
-Wno-unused-parameter
-Wno-unused-but-set-variable
37
-Wno-type-limits
38
+ -Wno-format
39
+ -Wno-format-security
40
)
41
elseif(CMAKE_CXX_COMPILER_ID STREQUAL "MSVC")
42
target_compile_options(
0 commit comments