Changeset 10086 in webkit for trunk/JavaScriptCore
- Timestamp:
- Aug 7, 2005, 9:35:22 PM (20 years ago)
- Location:
- trunk/JavaScriptCore
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/ChangeLog
r10084 r10086 1 2005-08-07 Darin Adler <[email protected]> 2 3 - fixed two problems compiling with gcc 4.0 4 5 * kjs/array_object.cpp: (ArrayProtoFuncImp::callAsFunction): Initialized a 6 variable to quiet an erroneous warning. 7 * kjs/date_object.cpp: (KJS::makeTime): Removed extraneous KJS:: prefix. 8 1 9 2005-08-07 Darin Adler <[email protected]> 2 10 -
trunk/JavaScriptCore/kjs/array_object.cpp
r10084 r10086 427 427 unsigned length = thisObj->get(exec,lengthPropertyName)->toUInt32(exec); 428 428 429 ValueImp *result ;429 ValueImp *result = 0; // work around gcc 4.0 bug in uninitialized variable warning 430 430 431 431 switch (id) { -
trunk/JavaScriptCore/kjs/date_object.cpp
r10084 r10086 956 956 }; 957 957 958 double KJS::makeTime(struct tm *t, double ms, bool utc)958 double makeTime(struct tm *t, double ms, bool utc) 959 959 { 960 960 int utcOffset;
Note:
See TracChangeset
for help on using the changeset viewer.