Changeset 76248 in webkit for trunk/Source/JavaScriptCore/wtf/HashCountedSet.h
- Timestamp:
- Jan 20, 2011, 8:30:54 AM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/wtf/HashCountedSet.h
r56435 r76248 23 23 24 24 #include "Assertions.h" 25 #include "FastAllocBase.h"26 25 #include "HashMap.h" 27 26 #include "Vector.h" … … 30 29 31 30 template<typename Value, typename HashFunctions = typename DefaultHash<Value>::Hash, 32 typename Traits = HashTraits<Value> > class HashCountedSet : public FastAllocBase { 31 typename Traits = HashTraits<Value> > class HashCountedSet { 32 WTF_MAKE_FAST_ALLOCATED; 33 33 private: 34 34 typedef HashMap<Value, unsigned, HashFunctions, Traits> ImplType;
Note:
See TracChangeset
for help on using the changeset viewer.