Changeset 45887 in webkit for trunk/JavaScriptCore/parser/Nodes.h


Ignore:
Timestamp:
Jul 14, 2009, 6:11:29 PM (16 years ago)
Author:
[email protected]
Message:

2009-07-14 Zoltan Horvath <[email protected]>

Reviewed by Darin Adler.

Change ParserArenaRefCounted's superclass to RefCountedCustomAllocated
https://bugs.webkit.org/show_bug.cgi?id=27249

ParserArenaDeletable customizes operator new, to avoid double inheritance
ParserArenaDeletable's superclass has been changed to RefCountedCustomAllocated.

  • parser/Nodes.h:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/parser/Nodes.h

    r45730 r45887  
    114114    };
    115115
    116     class ParserArenaRefCounted : public RefCounted<ParserArenaRefCounted> {
     116    class ParserArenaRefCounted : public RefCountedCustomAllocated<ParserArenaRefCounted> {
    117117    protected:
    118118        ParserArenaRefCounted(JSGlobalData*);
Note: See TracChangeset for help on using the changeset viewer.