Changeset 29439 in webkit for trunk/JavaScriptCore
- Timestamp:
- Jan 12, 2008, 10:05:44 AM (17 years ago)
- Location:
- trunk/JavaScriptCore
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/ChangeLog
r29438 r29439 1 2008-01-12 Darin Adler <[email protected]> 2 3 - try to fix Qt build 4 5 * kjs/function.cpp: Added include of scope_chain_mark.h. 6 * kjs/scope_chain_mark.h: Added multiple-include guards. 7 1 8 2008-01-12 Mark Rowe <[email protected]> 2 9 -
trunk/JavaScriptCore/kjs/function.cpp
r29431 r29439 39 39 #include "nodes.h" 40 40 #include "operations.h" 41 #include "scope_chain_mark.h" 41 42 #include <errno.h> 42 43 #include <stdio.h> -
trunk/JavaScriptCore/kjs/scope_chain_mark.h
r29425 r29439 1 1 /* 2 * Copyright (C) 2003, 2006 Apple Inc.2 * Copyright (C) 2003, 2006, 2008 Apple Inc. All rights reserved. 3 3 * 4 4 * This library is free software; you can redistribute it and/or … … 19 19 */ 20 20 21 #ifndef scope_chain_mark_h 22 #define scope_chain_mark_h 23 24 #include "Activation.h" 21 25 #include "scope_chain.h" 22 #include "Activation.h"23 #include "object.h"24 26 25 27 namespace KJS { … … 44 46 45 47 } // namespace KJS 48 49 #endif
Note:
See TracChangeset
for help on using the changeset viewer.