summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author Yi Kong <yikong@google.com> 2019-09-26 15:33:04 -0700
committer Yi Kong <yikong@google.com> 2019-10-01 22:42:59 +0000
commitd0ce0fbfde6f692d35e57e3ead20d395d1b35b0e (patch)
treea32ae6b99ac2fe6ff831a5b2c46cccf5014a950d
parent84dfc3d33138470a9fbf624eaeda977b9f48e571 (diff)
Remove -Wno-c++98-compat-extra-semi warning flag
hidl/aidl actually does concern about this warning. After fixing their codebase, this flag is no longer needed. Test: presubmit Change-Id: Id88abea88137be0f873c21db76644fe78b9045c8
-rw-r--r--cc/config/clang.go4
1 files changed, 0 insertions, 4 deletions
diff --git a/cc/config/clang.go b/cc/config/clang.go
index e59aa3791..71bea4263 100644
--- a/cc/config/clang.go
+++ b/cc/config/clang.go
@@ -163,10 +163,6 @@ func init() {
// new warnings are fixed.
"-Wno-tautological-constant-compare",
"-Wno-tautological-type-limit-compare",
-
- // Disable c++98-specific warning since Android is not concerned with C++98
- // compatibility.
- "-Wno-c++98-compat-extra-semi",
}, " "))
// Extra cflags for projects under external/ directory to disable warnings that are infeasible