Changeset 45069 in webkit for trunk/JavaScriptCore/wtf


Ignore:
Timestamp:
Jun 24, 2009, 12:45:11 AM (16 years ago)
Author:
[email protected]
Message:

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

Reviewed by Darin Adler.

Inherits HashSet class from FastAllocBase, because it has been
instantiated by 'new' in JavaScriptCore/runtime/Collector.h:116.

  • wtf/HashSet.h:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/wtf/HashSet.h

    r37062 r45069  
    2222#define WTF_HashSet_h
    2323
     24#include "FastAllocBase.h"
    2425#include "HashTable.h"
    2526
     
    3334
    3435    template<typename ValueArg, typename HashArg = typename DefaultHash<ValueArg>::Hash,
    35         typename TraitsArg = HashTraits<ValueArg> > class HashSet {
     36        typename TraitsArg = HashTraits<ValueArg> > class HashSet : public FastAllocBase {
    3637    private:
    3738        typedef HashArg HashFunctions;
Note: See TracChangeset for help on using the changeset viewer.