Changeset 45120 in webkit


Ignore:
Timestamp:
Jun 24, 2009 4:53:36 PM (15 years ago)
Author:
eric@webkit.org
Message:

2009-06-24 Zoltan Horvath <hzoltan@inf.u-szeged.hu>

Reviewed by Darin Adler.

https://bugs.webkit.org/show_bug.cgi?id=26674

Inherits HashMap class from FastAllocBase because it has been
instantiated by 'new' in JavaScriptCore/runtime/Structure.cpp:458.

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

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/ChangeLog

    r45106 r45120  
     12009-06-24  Zoltan Horvath  <hzoltan@inf.u-szeged.hu>
     2
     3        Reviewed by Darin Adler.
     4       
     5        https://bugs.webkit.org/show_bug.cgi?id=26674
     6
     7        Inherits HashMap class from FastAllocBase because it has been
     8        instantiated by 'new' in JavaScriptCore/runtime/Structure.cpp:458.
     9
     10        * wtf/HashMap.h:
     11
    1122009-06-24  Oliver Hunt  <oliver@apple.com>
    213
  • trunk/JavaScriptCore/wtf/HashMap.h

    r35900 r45120  
    3030    template<typename KeyArg, typename MappedArg, typename HashArg = typename DefaultHash<KeyArg>::Hash,
    3131        typename KeyTraitsArg = HashTraits<KeyArg>, typename MappedTraitsArg = HashTraits<MappedArg> >
    32     class HashMap {
     32    class HashMap : public FastAllocBase {
    3333    private:
    3434        typedef KeyTraitsArg KeyTraits;
Note: See TracChangeset for help on using the changeset viewer.