Index: src/ast/scopes.cc |
diff --git a/src/ast/scopes.cc b/src/ast/scopes.cc |
index b6ae337877ca8368a03a90364f6b205d0775b771..4e7ca026dfd7448ddcfee6fac1eeaa6d13289095 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) { |