Changeset 2800 in webkit for trunk/JavaScriptCore/kjs/ustring.cpp
- Timestamp:
- Nov 21, 2002, 7:39:47 AM (23 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/ustring.cpp
r2772 r2800 183 183 unsigned h = length; 184 184 for (int i = 0; i < prefixLength; i++) 185 h = 127 * h + s[i].u nicode();185 h = 127 * h + s[i].uc; 186 186 for (int i = suffixPosition; i < length; i++) 187 h = 127 * h + s[i].u nicode();187 h = 127 * h + s[i].uc; 188 188 if (h == 0) 189 189 h = 0x80000000; … … 721 721 } 722 722 if (l < lmin) 723 return (c1->u nicode() > c2->unicode()) ? 1 : -1;723 return (c1->uc > c2->uc) ? 1 : -1; 724 724 725 725 if (l1 == l2) {
Note:
See TracChangeset
for help on using the changeset viewer.