Changeset 45121 in webkit


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

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

Reviewed by Maciej Stachowiak.

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

Inherits Register class from FastAllocBase because it has been
instantiated by 'new' in JavaScriptCore/runtime/JSVariableObject.h:149.

  • interpreter/Register.h:
Location:
trunk/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/ChangeLog

    r45120 r45121  
     12009-06-24  Zoltan Horvath  <hzoltan@inf.u-szeged.hu>
     2
     3        Reviewed by Maciej Stachowiak.
     4       
     5        https://bugs.webkit.org/show_bug.cgi?id=26675
     6
     7        Inherits Register class from FastAllocBase because it has been
     8        instantiated by 'new' in JavaScriptCore/runtime/JSVariableObject.h:149.
     9
     10        * interpreter/Register.h:
     11
    1122009-06-24  Zoltan Horvath  <hzoltan@inf.u-szeged.hu>
    213
  • trunk/JavaScriptCore/interpreter/Register.h

    r44344 r45121  
    4848    typedef ExecState CallFrame;
    4949
    50     class Register {
     50    class Register : public FastAllocBase {
    5151    public:
    5252        Register();
Note: See TracChangeset for help on using the changeset viewer.