Changeset 55068 in webkit for trunk/JavaScriptCore/wtf/HashMap.h
- Timestamp:
- Feb 21, 2010, 10:12:52 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/wtf/HashMap.h
r53957 r55068 134 134 static unsigned hash(const T& key) { return Translator::hash(key); } 135 135 static bool equal(const KeyType& a, const T& b) { return Translator::equal(a, b); } 136 static void translate(ValueType& location, const T& key, const MappedType& , unsigned hashCode)136 static void translate(ValueType& location, const T& key, const MappedType& mapped, unsigned hashCode) 137 137 { 138 138 Translator::translate(location.first, key, hashCode); 139 location.second = mapped; 139 140 } 140 141 };
Note:
See TracChangeset
for help on using the changeset viewer.