Changeset 13294 in webkit for trunk/JavaScriptCore/kjs/ustring.cpp
- Timestamp:
- Mar 14, 2006, 5:09:15 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/ustring.cpp
r13089 r13294 1177 1177 l++; 1178 1178 } 1179 1179 1180 if (l < lmin) 1180 1181 return (c1->uc > c2->uc) ? 1 : -1; 1181 1182 1182 if (l1 == l2) {1183 if (l1 == l2) 1183 1184 return 0; 1184 } 1185 return (l1 <l2) ? 1 : -1;1185 1186 return (l1 > l2) ? 1 : -1; 1186 1187 } 1187 1188
Note:
See TracChangeset
for help on using the changeset viewer.