Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(4)

Unified Diff: src/hashmap.h

Issue 9710001: Fix clang template weirdness. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 8 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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));
}
};
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698