diff --git a/presubmit_support.py b/presubmit_support.py index 6f796b6bf..32d7c958e 100755 --- a/presubmit_support.py +++ b/presubmit_support.py @@ -317,11 +317,11 @@ class InputApi(object): self.Command = CommandData # Replace and as headers that need to be included - # with "base/hash_tables.h" instead. + # with "base/containers/hash_tables.h" instead. # Access to a protected member _XX of a client class # pylint: disable=W0212 self.cpplint._re_pattern_templates = [ - (a, b, 'base/hash_tables.h') + (a, b, 'base/containers/hash_tables.h') if header in ('', '') else (a, b, header) for (a, b, header) in cpplint._re_pattern_templates ]