Changeset 45128 in webkit for trunk/JavaScriptCore
- Timestamp:
- Jun 24, 2009, 5:45:37 PM (16 years ago)
- Location:
- trunk/JavaScriptCore
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/ChangeLog
r45123 r45128 1 2009-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 1 9 2009-06-24 Zoltan Horvath <[email protected]> 2 10 -
trunk/JavaScriptCore/bytecode/CodeBlock.h
r45123 r45128 39 39 #include "RegExp.h" 40 40 #include "UString.h" 41 #include <wtf/FastAllocBase.h> 41 42 #include <wtf/RefPtr.h> 42 43 #include <wtf/Vector.h> … … 215 216 #endif 216 217 217 class CodeBlock : public FastAllocBase {218 class CodeBlock : public WTF::FastAllocBase { 218 219 friend class JIT; 219 220 public: -
trunk/JavaScriptCore/bytecompiler/BytecodeGenerator.h
r45122 r45128 41 41 #include "Debugger.h" 42 42 #include "Nodes.h" 43 #include <wtf/FastAllocBase.h> 43 44 #include <wtf/PassRefPtr.h> 44 45 #include <wtf/SegmentedVector.h> … … 61 62 }; 62 63 63 class BytecodeGenerator : public FastAllocBase {64 class BytecodeGenerator : public WTF::FastAllocBase { 64 65 public: 65 66 typedef DeclarationStacks::VarStack VarStack; -
trunk/JavaScriptCore/interpreter/Register.h
r45121 r45128 32 32 #include "JSValue.h" 33 33 #include <wtf/Assertions.h> 34 #include <wtf/FastAllocBase.h> 34 35 #include <wtf/VectorTraits.h> 35 36 … … 48 49 typedef ExecState CallFrame; 49 50 50 class Register : public FastAllocBase {51 class Register : public WTF::FastAllocBase { 51 52 public: 52 53 Register();
Note:
See TracChangeset
for help on using the changeset viewer.