Commit 1827852d authored by danakj@chromium.org's avatar danakj@chromium.org

Update hack in presubmit check to reflect new chromium path.

src/base/hash_tables.h has moved to src/base/containers/hash_tables.h in r205241.

R=maruel@chromium.org

Review URL: https://chromiumcodereview.appspot.com/16787005

git-svn-id: svn://svn.chromium.org/chrome/trunk/tools/depot_tools@205662 0039d316-1c4b-4281-b951-d872f2087c98
parent b65c43c6
......@@ -317,11 +317,11 @@ class InputApi(object):
self.Command = CommandData
# Replace <hash_map> and <hash_set> 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 ('<hash_map>', '<hash_set>') else (a, b, header)
for (a, b, header) in cpplint._re_pattern_templates
]
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment