Changeset 50324 in webkit for trunk/JavaScriptCore
- Timestamp:
- Oct 30, 2009, 1:53:27 AM (16 years ago)
- Location:
- trunk/JavaScriptCore
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/ChangeLog
r50323 r50324 1 2009-10-30 Zoltan Horvath <[email protected]> 2 3 Reviewed by Darin Adler. 4 5 Allow custom memory allocation control for JavaScriptCore's ListHashSet 6 https://bugs.webkit.org/show_bug.cgi?id=30853 7 8 Inherits ListHashSet class from FastAllocBase because it is 9 instantiated by 'new' in WebCore/rendering/RenderBlock.cpp:1813. 10 11 * wtf/ListHashSet.h: 12 1 13 2009-10-30 Oliver Hunt <[email protected]> 2 14 -
trunk/JavaScriptCore/wtf/ListHashSet.h
r38392 r50324 52 52 template<typename ValueArg, typename HashArg> struct ListHashSetNodeHashFunctions; 53 53 54 template<typename ValueArg, typename HashArg = typename DefaultHash<ValueArg>::Hash> class ListHashSet {54 template<typename ValueArg, typename HashArg = typename DefaultHash<ValueArg>::Hash> class ListHashSet : public FastAllocBase { 55 55 private: 56 56 typedef ListHashSetNode<ValueArg> Node;
Note:
See TracChangeset
for help on using the changeset viewer.