Index: cc/PRESUBMIT.py |
diff --git a/cc/PRESUBMIT.py b/cc/PRESUBMIT.py |
index c8506182da1878681437f25297c1886f1995e862..f044943f4ee4e39839014300499e0d42352a0a3b 100644 |
--- a/cc/PRESUBMIT.py |
+++ b/cc/PRESUBMIT.py |
@@ -247,9 +247,7 @@ def CheckNamespace(input_api, output_api): |
contents = input_api.ReadFile(f, 'rb') |
match = re.search(r'namespace\s*cc\s*{', contents) |
if match: |
- whitelist = [ |
- r"cc::remove_if\b", |
- ] |
+ whitelist = [] |
if FindNamespaceInBlock(match.end(), 'cc', contents, whitelist=whitelist): |
errors.append(f.LocalPath()) |