Changeset 38390 in webkit for trunk/JavaScriptCore/runtime/JSGlobalObjectFunctions.cpp
- Timestamp:
- Nov 14, 2008, 9:49:56 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/runtime/JSGlobalObjectFunctions.cpp
r38205 r38390 240 240 if (number >= mantissaOverflowLowerBound) { 241 241 if (radix == 10) 242 number = strtod(s.substr(firstDigitPosition, p - firstDigitPosition).ascii(), 0);242 number = WTF::strtod(s.substr(firstDigitPosition, p - firstDigitPosition).ascii(), 0); 243 243 else if (radix == 2 || radix == 4 || radix == 8 || radix == 16 || radix == 32) 244 244 number = parseIntOverflow(s.substr(firstDigitPosition, p - firstDigitPosition).ascii(), p - firstDigitPosition, radix);
Note:
See TracChangeset
for help on using the changeset viewer.