Changeset 13365 in webkit for trunk/JavaScriptCore/kjs/ustring.cpp
- Timestamp:
- Mar 17, 2006, 2:03:39 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/ustring.cpp
r13311 r13365 562 562 UString UString::from(double d) 563 563 { 564 // avoid ever printing -NaN, in JS conceptually there is only one NaN value 565 if (isNaN(d)) 566 return "NaN"; 567 564 568 char buf[80]; 565 569 int decimalPoint;
Note:
See TracChangeset
for help on using the changeset viewer.