Ignore:
Timestamp:
Sep 3, 2009, 12:14:55 AM (16 years ago)
Author:
[email protected]
Message:

2009-09-03 Zoltan Horvath <[email protected]>

Reviewed by Darin Adler.

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

Inherits HashEntry class from FastAllocBase because it has been
instantiated by 'new' JavaScriptCore/runtime/Lookup.cpp:32.

  • runtime/Lookup.h:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/runtime/Lookup.h

    r47780 r48005  
    5252    typedef void (*PutFunction)(ExecState*, JSObject* baseObject, JSValue value);
    5353
    54     class HashEntry {
     54    class HashEntry : public FastAllocBase {
    5555    public:
    5656        void initialize(UString::Rep* key, unsigned char attributes, intptr_t v1, intptr_t v2)
Note: See TracChangeset for help on using the changeset viewer.