Index: src/ast/scopes.cc |
diff --git a/src/ast/scopes.cc b/src/ast/scopes.cc |
index ad0df2b33e7a6d3e5848dc99ac4de97f790bb86e..bd50e21d7ccd0ac106dfc633bfc9a588b602e205 100644 |
--- a/src/ast/scopes.cc |
+++ b/src/ast/scopes.cc |
@@ -25,7 +25,7 @@ namespace internal { |
// this is ensured. |
VariableMap::VariableMap(Zone* zone) |
- : ZoneHashMap(ZoneHashMap::PointersMatch, 8, ZoneAllocationPolicy(zone)) {} |
+ : ZoneHashMap(8, ZoneAllocationPolicy(zone)) {} |
Variable* VariableMap::Declare(Zone* zone, Scope* scope, |
const AstRawString* name, VariableMode mode, |
@@ -75,7 +75,7 @@ Variable* VariableMap::Lookup(const AstRawString* name) { |
} |
SloppyBlockFunctionMap::SloppyBlockFunctionMap(Zone* zone) |
- : ZoneHashMap(ZoneHashMap::PointersMatch, 8, ZoneAllocationPolicy(zone)) {} |
+ : ZoneHashMap(8, ZoneAllocationPolicy(zone)) {} |
void SloppyBlockFunctionMap::Declare(Zone* zone, const AstRawString* name, |
SloppyBlockFunctionStatement* stmt) { |