Merge pull request #1733 from null77/fix-msvc-warn

Suppress MSVC warning about unused variable.
This commit is contained in:
John Kessenich
2019-03-18 23:41:27 +07:00
committed by GitHub
2 changed files with 2 additions and 0 deletions

View File

@@ -152,6 +152,7 @@ source_set("glslang_sources") {
if (is_win && !is_clang) {
cflags = [
"/wd4018", # signed/unsigned mismatch
"/wd4189", # local variable is initialized but not referenced
]
}