Merge "Output of an apex module type can be included in tests" am: 08e047fdc6
am: 445033ddfc
Change-Id: I20808d793b0459f624d8a3d0cf4e73157d5dc462
diff --git a/cc/config/clang.go b/cc/config/clang.go
index 6d83879..e7d2dd2 100644
--- a/cc/config/clang.go
+++ b/cc/config/clang.go
@@ -97,8 +97,9 @@
pctx.StaticVariable("ClangExtraCflags", strings.Join([]string{
"-D__compiler_offsetof=__builtin_offsetof",
- // -Wimplicit-fallthrough is not enabled by -Wall.
+ // Make implicit fallthrough an error in the future.
"-Wimplicit-fallthrough",
+ "-Wno-error=implicit-fallthrough",
// Help catch common 32/64-bit errors.
"-Werror=int-conversion",