Changeset 3051 in webkit for trunk/JavaScriptCore/kjs/ustring.cpp
- Timestamp:
- Dec 14, 2002, 4:37:56 PM (22 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/ustring.cpp
r2912 r3051 347 347 348 348 if (decimalPoint <= 0) { 349 buf[i++] = 0;349 buf[i++] = '0'; 350 350 buf[i++] = '.'; 351 for (int j = decimalPoint; j < 0; j++) { 352 buf[i++] = '0'; 353 } 351 354 strcpy(buf + i, result); 352 355 } else if (decimalPoint >= length) {
Note:
See TracChangeset
for help on using the changeset viewer.