Commit 08fe88a9 by Jamie Madill

Suppress a MSVC cast warning in GN.

Also came up when using the BUILD.gn file with ANGLE. ANGLE bug: 3088
parent 49309646
......@@ -148,6 +148,11 @@ source_set("glslang_sources") {
"-Wno-unused-variable",
]
}
if (is_win && !is_clang) {
cflags = [
"/wd4018", # signed/unsigned mismatch
]
}
deps = [
"${spirv_tools_dir}:spvtools_opt",
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment