diff options
Diffstat (limited to 'cc')
| -rw-r--r-- | cc/config/clang.go | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/cc/config/clang.go b/cc/config/clang.go index 0b2190c47..46d852880 100644 --- a/cc/config/clang.go +++ b/cc/config/clang.go @@ -186,6 +186,9 @@ func init() { // compatibility. "-Wno-c++98-compat-extra-semi", + // Disable this warning until we can fix all instances where it fails. + "-Wno-constant-logical-operand", + // Disable this warning because we don't care about behavior with older compilers. "-Wno-return-std-move-in-c++11", |