summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--cc/config/clang.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/cc/config/clang.go b/cc/config/clang.go
index a57bbf86f..08c638d00 100644
--- a/cc/config/clang.go
+++ b/cc/config/clang.go
@@ -97,8 +97,9 @@ func init() {
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",