summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author Treehugger Robot <treehugger-gerrit@google.com> 2023-03-15 01:41:58 +0000
committer Gerrit Code Review <noreply-gerritcodereview@google.com> 2023-03-15 01:41:58 +0000
commit79727bd2364ee52ef19784a7769d3af2ca6b945c (patch)
treed4550da933fa0bf4b52ab024351e3f34bd98d1b4
parentb157846a685711b620ed9897b8dbd8c49bb5b9c8 (diff)
parent96ec99a7363eda78fbd76238653cd4f327ec2278 (diff)
Merge "Enable Wunqualified-std-cast-call globally"
-rw-r--r--cc/config/global.go3
1 files changed, 1 insertions, 2 deletions
diff --git a/cc/config/global.go b/cc/config/global.go
index 9364ec617..6b45b1230 100644
--- a/cc/config/global.go
+++ b/cc/config/global.go
@@ -234,8 +234,6 @@ var (
// New warnings to be fixed after clang-r433403
"-Wno-error=unused-but-set-variable", // http://b/197240255
"-Wno-error=unused-but-set-parameter", // http://b/197240255
- // New warnings to be fixed after clang-r458507
- "-Wno-error=unqualified-std-cast-call", // http://b/239662094
// New warnings to be fixed after clang-r468909
"-Wno-error=deprecated-builtins", // http://b/241601211
"-Wno-error=deprecated", // in external/googletest/googletest
@@ -253,6 +251,7 @@ var (
"-Wno-sizeof-array-div",
"-Wno-unused-but-set-variable",
"-Wno-unused-but-set-parameter",
+ "-Wno-unqualified-std-cast-call",
"-Wno-bitwise-instead-of-logical",
"-Wno-misleading-indentation",
"-Wno-array-parameter",