Changeset 12305 in webkit for trunk/JavaScriptCore
- Timestamp:
- Jan 22, 2006, 11:20:50 PM (19 years ago)
- Location:
- trunk/JavaScriptCore
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/ChangeLog
r12304 r12305 1 1 2006-01-23 George Staikos <[email protected]> 2 2 3 Reviewed by Maciej .3 Reviewed by Maciej and Darin. 4 4 5 5 * kxmlcore/Assertions.h: This file only works with __APPLE__ right now 6 * kjs/interpreter.cpp: ditto 7 * kjs/simple_number.h: Add assert.h and remove from config.h 8 * kjs/array_object.cpp: Use relative paths for kxmlcore includes 9 * kjs/testkjs.cpp: Use relative paths for kxmlcore includes 6 10 7 11 2006-01-23 George Staikos <[email protected]> -
trunk/JavaScriptCore/kjs/array_object.cpp
r12076 r12305 33 33 #include "types.h" 34 34 #include "value.h" 35 #include "HashSet.h"35 #include <kxmlcore/HashSet.h> 36 36 37 37 #include "array_object.lut.h" -
trunk/JavaScriptCore/kjs/config.h
r12302 r12305 19 19 #define HAVE_SYS_TIMEB_H 1 20 20 #define USE_SYSTEM_MALLOC 1 21 22 #include <assert.h>23 21 24 22 #else -
trunk/JavaScriptCore/kjs/interpreter.cpp
r12069 r12305 37 37 #include "object.h" 38 38 #include "operations.h" 39 #if !WIN3239 #if __APPLE__ 40 40 #include "runtime.h" 41 41 #endif -
trunk/JavaScriptCore/kjs/simple_number.h
r11962 r12305 23 23 #define KJS_SIMPLE_NUMBER_H 24 24 25 #include <assert.h> 25 26 #include <stdlib.h> 26 27 #include "kxmlcore/AlwaysInline.h" -
trunk/JavaScriptCore/kjs/testkjs.cpp
r12172 r12305 27 27 #include <string.h> 28 28 29 #include "HashTraits.h"29 #include <kxmlcore/HashTraits.h> 30 30 #include "value.h" 31 31 #include "object.h"
Note:
See TracChangeset
for help on using the changeset viewer.