Changeset 50324 in webkit for trunk/JavaScriptCore


Ignore:
Timestamp:
Oct 30, 2009, 1:53:27 AM (16 years ago)
Author:
[email protected]
Message:

Allow custom memory allocation control for JavaScriptCore's ListHashSet
https://bugs.webkit.org/show_bug.cgi?id=30853

Reviewed by Darin Adler.

Inherits ListHashSet class from FastAllocBase because it is
instantiated by 'new' in WebCore/rendering/RenderBlock.cpp:1813.

  • wtf/ListHashSet.h:
Location:
trunk/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/ChangeLog

    r50323 r50324  
     12009-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
    1132009-10-30  Oliver Hunt  <[email protected]>
    214
  • trunk/JavaScriptCore/wtf/ListHashSet.h

    r38392 r50324  
    5252    template<typename ValueArg, typename HashArg> struct ListHashSetNodeHashFunctions;
    5353
    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 {
    5555    private:
    5656        typedef ListHashSetNode<ValueArg> Node;
Note: See TracChangeset for help on using the changeset viewer.