Changeset 55833 in webkit for trunk/JavaScriptCore/runtime/UString.cpp
- Timestamp:
- Mar 10, 2010, 11:19:29 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/runtime/UString.cpp
r55825 r55833 494 494 if (len == 0) 495 495 return 0; 496 const UChar* p = m_rep-> data();496 const UChar* p = m_rep->characters(); 497 497 unsigned short c = p[0]; 498 498 … … 711 711 if (length != b->length()) 712 712 return false; 713 const UChar* d = r-> data();714 const UChar* s = b-> data();713 const UChar* d = r->characters(); 714 const UChar* s = b->characters(); 715 715 for (unsigned i = 0; i != length; ++i) { 716 716 if (d[i] != s[i])
Note:
See TracChangeset
for help on using the changeset viewer.