Changeset 45128 in webkit for trunk/JavaScriptCore


Ignore:
Timestamp:
Jun 24, 2009, 5:45:37 PM (16 years ago)
Author:
[email protected]
Message:

JavaScriptCore:

2009-06-24 David Levin <[email protected]>

Fix all builds.

  • bytecode/CodeBlock.h:
  • bytecompiler/BytecodeGenerator.h:
  • interpreter/Register.h:

WebCore:

2009-06-24 David Levin <[email protected]>

Fix all builds.

  • ForwardingHeaders/wtf/FastAllocBase.h: Added.
Location:
trunk/JavaScriptCore
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/ChangeLog

    r45123 r45128  
     12009-06-24  David Levin  <[email protected]>
     2
     3        Fix all builds.
     4
     5        * bytecode/CodeBlock.h:
     6        * bytecompiler/BytecodeGenerator.h:
     7        * interpreter/Register.h:
     8
    192009-06-24  Zoltan Horvath  <[email protected]>
    210
  • trunk/JavaScriptCore/bytecode/CodeBlock.h

    r45123 r45128  
    3939#include "RegExp.h"
    4040#include "UString.h"
     41#include <wtf/FastAllocBase.h>
    4142#include <wtf/RefPtr.h>
    4243#include <wtf/Vector.h>
     
    215216#endif
    216217
    217     class CodeBlock : public FastAllocBase {
     218    class CodeBlock : public WTF::FastAllocBase {
    218219        friend class JIT;
    219220    public:
  • trunk/JavaScriptCore/bytecompiler/BytecodeGenerator.h

    r45122 r45128  
    4141#include "Debugger.h"
    4242#include "Nodes.h"
     43#include <wtf/FastAllocBase.h>
    4344#include <wtf/PassRefPtr.h>
    4445#include <wtf/SegmentedVector.h>
     
    6162    };
    6263
    63     class BytecodeGenerator : public FastAllocBase {
     64    class BytecodeGenerator : public WTF::FastAllocBase {
    6465    public:
    6566        typedef DeclarationStacks::VarStack VarStack;
  • trunk/JavaScriptCore/interpreter/Register.h

    r45121 r45128  
    3232#include "JSValue.h"
    3333#include <wtf/Assertions.h>
     34#include <wtf/FastAllocBase.h>
    3435#include <wtf/VectorTraits.h>
    3536
     
    4849    typedef ExecState CallFrame;
    4950
    50     class Register : public FastAllocBase {
     51    class Register : public WTF::FastAllocBase {
    5152    public:
    5253        Register();
Note: See TracChangeset for help on using the changeset viewer.