Changeset 44868 in webkit for trunk/JavaScriptCore
- Timestamp:
- Jun 19, 2009, 1:30:47 PM (16 years ago)
- Location:
- trunk/JavaScriptCore
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/ChangeLog
r44866 r44868 1 009-06-19 Zoltan Horvath <[email protected]> 2 3 Reviewed by Darin Adler. 4 5 Inherits HashCountedSet class from FastAllocBase because it has been 6 instantiated by 'new' in JavaScriptCore/runtime/Collector.cpp:1095. 7 8 * wtf/HashCountedSet.h: 9 1 10 2009-06-19 Yong Li <[email protected]> 2 11 -
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.