Changeset 10757 in webkit for trunk/JavaScriptCore/kjs/ustring.cpp
- Timestamp:
- Oct 5, 2005, 6:13:18 PM (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/ustring.cpp
r10634 r10757 968 968 bool b = true; 969 969 970 if ( isNaN(d) ||d != static_cast<uint32_t>(d)) {970 if (d != static_cast<uint32_t>(d)) { 971 971 b = false; 972 972 d = 0; … … 984 984 bool b = true; 985 985 986 if ( isNaN(d) ||d != static_cast<uint32_t>(d)) {986 if (d != static_cast<uint32_t>(d)) { 987 987 b = false; 988 988 d = 0;
Note:
See TracChangeset
for help on using the changeset viewer.