Skip to content
This repository was archived by the owner on Mar 4, 2020. It is now read-only.

Commit 2509049

Browse files
deepak1556nitsakh
authored andcommitted
FIXME: silence string-plus-int warning
1 parent 86f337a commit 2509049

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

BUILD.gn

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -145,6 +145,7 @@ component("node_lib") {
145145
"-Wno-implicit-fallthrough",
146146
"-Wno-return-type",
147147
"-Wno-sometimes-uninitialized",
148+
"-Wno-string-plus-int",
148149
"-Wno-unused-label",
149150
"-Wno-unused-private-field",
150151
"-Wno-unused-variable",

deps/nghttp2/BUILD.gn

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,10 @@ static_library("nghttp2") {
1414
defines += [ "HAVE_CONFIG_H" ]
1515
}
1616

17-
cflags_c = [ "-Wno-implicit-function-declaration" ]
17+
cflags_c = [
18+
"-Wno-implicit-function-declaration",
19+
"-Wno-string-plus-int",
20+
]
1821

1922
sources = [
2023
"lib/nghttp2_buf.c",

0 commit comments

Comments
 (0)