Commit 5fde632c by Jamie Madill Committed by Commit Bot

Force impicit fallthrough off in xxhash.

This silences a warning present in Skia. The warning is disabled in ANGLE/Chrome by build's compiler.gni. Bug: skia:7647 Change-Id: Ie6308b7f4395786564aa79db8eb35401f3d98048 Reviewed-on: https://chromium-review.googlesource.com/c/angle/angle/+/2382414 Commit-Queue: Jamie Madill <jmadill@chromium.org> Reviewed-by: 's avatarGeoff Lang <geofflang@chromium.org>
parent 331581e9
...@@ -281,6 +281,9 @@ angle_source_set("angle_system_utils") { ...@@ -281,6 +281,9 @@ angle_source_set("angle_system_utils") {
angle_source_set("xxhash") { angle_source_set("xxhash") {
sources = xxhash_sources sources = xxhash_sources
if (is_clang) {
cflags_c = [ "-Wno-implicit-fallthrough" ]
}
} }
if (angle_has_build) { if (angle_has_build) {
......
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