Index: build/common.gypi |
diff --git a/build/common.gypi b/build/common.gypi |
index 1adb1722fa06df2d260ddc0585c11212ff7fcaaa..a61d36bc3176bbd69d501a96b99600266e9166f3 100644 |
--- a/build/common.gypi |
+++ b/build/common.gypi |
@@ -1136,13 +1136,8 @@ |
}], |
['clang==1', { |
'cflags': [ |
- # Don't warn about unused variables, due to a common pattern: |
- # scoped_deleter unused_variable(&thing_to_delete); |
- '-Wno-unused-variable', |
# Clang spots more unused functions. |
'-Wno-unused-function', |
- # gtest confuses clang. |
- '-Wno-bool-conversions', |
# Don't die on dtoa code that uses a char as an array index. |
'-Wno-char-subscripts', |
# Survive EXPECT_EQ(unnamed_enum, unsigned int) -- see |