Changeset 28721 in webkit for trunk/JavaScriptCore/wtf/HashMap.h
- Timestamp:
- Dec 14, 2007, 12:50:30 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/wtf/HashMap.h
r28132 r28721 24 24 25 25 #include "HashTable.h" 26 #include "Vector.h"27 26 28 27 namespace WTF { … … 394 393 } 395 394 396 template<typename T, typename U, typename V, typename W, typename X >397 inline void copyKeysToVector(const HashMap<T, U, V, W, X>& collection, Vector<T>& vector)395 template<typename T, typename U, typename V, typename W, typename X, typename Y> 396 inline void copyKeysToVector(const HashMap<T, U, V, W, X>& collection, Y& vector) 398 397 { 399 398 typedef typename HashMap<T, U, V, W, X>::const_iterator::Keys iterator; … … 407 406 } 408 407 409 template<typename T, typename U, typename V, typename W, typename X >410 inline void copyValuesToVector(const HashMap<T, U, V, W, X>& collection, Vector<U>& vector)408 template<typename T, typename U, typename V, typename W, typename X, typename Y> 409 inline void copyValuesToVector(const HashMap<T, U, V, W, X>& collection, Y& vector) 411 410 { 412 411 typedef typename HashMap<T, U, V, W, X>::const_iterator::Values iterator;
Note:
See TracChangeset
for help on using the changeset viewer.