Changeset 44868 in webkit for trunk/JavaScriptCore/wtf/HashCountedSet.h
- Timestamp:
- Jun 19, 2009, 1:30:47 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/wtf/HashCountedSet.h
r39556 r44868 23 23 24 24 #include "Assertions.h" 25 #include "FastAllocBase.h" 25 26 #include "HashMap.h" 26 27 #include "Vector.h" … … 29 30 30 31 template<typename Value, typename HashFunctions = typename DefaultHash<Value>::Hash, 31 typename Traits = HashTraits<Value> > class HashCountedSet {32 typename Traits = HashTraits<Value> > class HashCountedSet : public FastAllocBase { 32 33 private: 33 34 typedef HashMap<Value, unsigned, HashFunctions, Traits> ImplType;
Note:
See TracChangeset
for help on using the changeset viewer.