Changeset 45073 in webkit


Ignore:
Timestamp:
Jun 24, 2009 12:54:58 AM (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=26648

Inherits Deque class from FastAllocBase because it has been
instantiated by 'new' with DEFINE_STATIC_LOCAL macro in
JavaScriptCore/wtf/MainThread.cpp:62.

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

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/ChangeLog

    r45072 r45073  
     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=26648
     6
     7        Inherits Deque class from FastAllocBase because it has been
     8        instantiated by 'new' with DEFINE_STATIC_LOCAL macro in
     9        JavaScriptCore/wtf/MainThread.cpp:62.
     10
     11        * wtf/Deque.h:
     12
    1132009-06-24  Zoltan Horvath  <hzoltan@inf.u-szeged.hu>
    214
  • trunk/JavaScriptCore/wtf/Deque.h

    r41081 r45073  
    4545
    4646    template<typename T>
    47     class Deque {
     47    class Deque : public FastAllocBase {
    4848    public:
    4949        typedef DequeIterator<T> iterator;
Note: See TracChangeset for help on using the changeset viewer.