Index: build/common.gypi |
diff --git a/build/common.gypi b/build/common.gypi |
index 768160ab4f760672e325d99d435d89445de51d66..eb7b37098d1c3034d3d9c9e8e42a2e29481ce93d 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 |