Changeset 29436 in webkit for trunk/JavaScriptCore
- Timestamp:
- Jan 12, 2008, 6:12:55 AM (17 years ago)
- Location:
- trunk/JavaScriptCore
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/ChangeLog
r29435 r29436 1 2008-01-12 Mark Rowe <[email protected]> 2 3 Attempted Windows build fix. Use struct consistently when forward-declaring 4 ActivationStackNode and StackActivation. 5 6 * kjs/Activation.h: 7 * kjs/JSGlobalObject.h: 8 1 9 2008-01-12 Cameron Zwarich <[email protected]> 2 10 -
trunk/JavaScriptCore/kjs/Activation.h
r29425 r29436 33 33 class Arguments; 34 34 class FunctionImp; 35 classStackActivation;35 struct StackActivation; 36 36 37 37 class ActivationImp : public JSVariableObject { -
trunk/JavaScriptCore/kjs/JSGlobalObject.h
r29435 r29436 29 29 30 30 class ActivationImp; 31 class ActivationStackNode;32 31 class ArrayObjectImp; 33 32 class ArrayPrototype; … … 67 66 class UriError; 68 67 class UriErrorPrototype; 68 struct ActivationStackNode; 69 69 70 70 enum CompatMode { NativeMode, IECompat, NetscapeCompat };
Note:
See TracChangeset
for help on using the changeset viewer.