Changeset 3306 in webkit for trunk/JavaScriptCore/kjs/function.cpp
- Timestamp:
- Jan 12, 2003, 10:43:08 AM (22 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/function.cpp
r3098 r3306 484 484 double value = llValue; 485 485 #else 486 long value = strtol l(cstr.c_str(), &endptr, radix);486 long value = strtol(cstr.c_str(), &endptr, radix); 487 487 #endif 488 488 if (errno != 0 || endptr == cstr.c_str()) … … 546 546 break; 547 547 } 548 #if !NDEBUG548 #ifndef NDEBUG 549 549 case KJSPrint: { 550 550 UString str = args[0].toString(exec);
Note:
See TracChangeset
for help on using the changeset viewer.