summaryrefslogtreecommitdiff
path: root/deps/v8/src/address-map.cc
diff options
context:
space:
mode:
Diffstat (limited to 'deps/v8/src/address-map.cc')
-rw-r--r--deps/v8/src/address-map.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/deps/v8/src/address-map.cc b/deps/v8/src/address-map.cc
index 61292bf562..3122b33693 100644
--- a/deps/v8/src/address-map.cc
+++ b/deps/v8/src/address-map.cc
@@ -13,7 +13,7 @@ namespace internal {
RootIndexMap::RootIndexMap(Isolate* isolate) {
map_ = isolate->root_index_map();
if (map_ != NULL) return;
- map_ = new base::HashMap(base::HashMap::PointersMatch);
+ map_ = new base::HashMap();
for (uint32_t i = 0; i < Heap::kStrongRootListLength; i++) {
Heap::RootListIndex root_index = static_cast<Heap::RootListIndex>(i);
Object* root = isolate->heap()->root(root_index);