Revision: 11060 Author: [email protected] Date: Thu Mar 15 08:01:59 2012 Log: Fix clang template weirdness.
[email protected] Review URL: https://chromiumcodereview.appspot.com/9710001 http://code.google.com/p/v8/source/detail?r=11060 Modified: /branches/bleeding_edge/src/hashmap.h ======================================= --- /branches/bleeding_edge/src/hashmap.h Thu Mar 15 00:13:46 2012 +++ /branches/bleeding_edge/src/hashmap.h Thu Mar 15 08:01:59 2012 @@ -331,7 +331,7 @@ 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
