Reviewers: rossberg,

Description:
Fix clang template weirdness.

[email protected]

Committed: https://code.google.com/p/v8/source/detail?r=11060

Please review this at https://chromiumcodereview.appspot.com/9710001/

SVN Base: https://v8.googlecode.com/svn/branches/bleeding_edge

Affected files:
  M src/hashmap.h


Index: src/hashmap.h
diff --git a/src/hashmap.h b/src/hashmap.h
index 0d51db2dde860ca5f265800381f2b49237114d8c..5aeb8951ed38f0237df5b7d3d75621667514007d 100644
--- a/src/hashmap.h
+++ b/src/hashmap.h
@@ -331,7 +331,7 @@ class TemplateHashMap: private TemplateHashMapImpl<AllocationPolicy> {
   Iterator begin() const { return Iterator(this, this->Start()); }
   Iterator end() const { return Iterator(this, NULL); }
   Iterator find(Key* key, bool insert = false) {
-    return Iterator(this, Lookup(key, key->Hash(), insert));
+    return Iterator(this, this->Lookup(key, key->Hash(), insert));
   }
 };



--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev

Reply via email to