Changeset 44868 in webkit for trunk/JavaScriptCore


Ignore:
Timestamp:
Jun 19, 2009, 1:30:47 PM (16 years ago)
Author:
[email protected]
Message:

009-06-19 Zoltan Horvath <[email protected]>

Reviewed by Darin Adler.


Inherits HashCountedSet class from FastAllocBase because it has been
instantiated by 'new' in JavaScriptCore/runtime/Collector.cpp:1095.

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

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/ChangeLog

    r44866 r44868  
     1009-06-19  Zoltan Horvath  <[email protected]>
     2
     3        Reviewed by Darin Adler.
     4       
     5        Inherits HashCountedSet class from FastAllocBase because it has been
     6        instantiated by 'new' in JavaScriptCore/runtime/Collector.cpp:1095.
     7
     8        * wtf/HashCountedSet.h:
     9
    1102009-06-19  Yong Li  <[email protected]>
    211
  • trunk/JavaScriptCore/wtf/HashCountedSet.h

    r39556 r44868  
    2323
    2424#include "Assertions.h"
     25#include "FastAllocBase.h"
    2526#include "HashMap.h"
    2627#include "Vector.h"
     
    2930
    3031    template<typename Value, typename HashFunctions = typename DefaultHash<Value>::Hash,
    31         typename Traits = HashTraits<Value> > class HashCountedSet {
     32        typename Traits = HashTraits<Value> > class HashCountedSet : public FastAllocBase {
    3233    private:
    3334        typedef HashMap<Value, unsigned, HashFunctions, Traits> ImplType;
Note: See TracChangeset for help on using the changeset viewer.