Changeset 45120 in webkit for trunk/JavaScriptCore/wtf/HashMap.h


Ignore:
Timestamp:
Jun 24, 2009, 4:53:36 PM (16 years ago)
Author:
[email protected]
Message:

2009-06-24 Zoltan Horvath <[email protected]>

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:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • 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.