Skip to content

Commit 517f39e

Browse files
authored
Merge pull request KhronosGroup#2380 from null77/suppress-override-warnings
Suppress two override suggestion warnings.
2 parents 983698b + bb52b5e commit 517f39e

File tree

1 file changed

+10
-8
lines changed

1 file changed

+10
-8
lines changed

BUILD.gn

+10-8
Original file line numberDiff line numberDiff line change
@@ -59,13 +59,13 @@ action("glslang_build_info") {
5959
script,
6060
template_file,
6161
]
62-
outputs = [
63-
out_file
64-
]
62+
outputs = [ out_file ]
6563
args = [
6664
rebase_path(src_dir, root_build_dir),
67-
"-i", rebase_path(template_file, root_build_dir),
68-
"-o", rebase_path(out_file, root_build_dir),
65+
"-i",
66+
rebase_path(template_file, root_build_dir),
67+
"-o",
68+
rebase_path(out_file, root_build_dir),
6969
]
7070
}
7171

@@ -228,10 +228,12 @@ template("glslang_sources_common") {
228228
"-Wno-ignored-qualifiers",
229229
"-Wno-implicit-fallthrough",
230230
"-Wno-inconsistent-missing-override",
231-
"-Wno-sign-compare",
232-
"-Wno-unused-variable",
233231
"-Wno-missing-field-initializers",
234232
"-Wno-newline-eof",
233+
"-Wno-sign-compare",
234+
"-Wno-suggest-destructor-override",
235+
"-Wno-suggest-override",
236+
"-Wno-unused-variable",
235237
]
236238
}
237239
if (is_win && !is_clang) {
@@ -291,9 +293,9 @@ executable("glslang_validator") {
291293
}
292294
defines = [ "ENABLE_OPT=1" ]
293295
deps = [
296+
":glslang_build_info",
294297
":glslang_default_resource_limits_sources",
295298
":glslang_sources",
296-
":glslang_build_info",
297299
]
298300
public_configs = [ ":glslang_hlsl" ]
299301

0 commit comments

Comments
 (0)