Changeset 62367 in webkit for trunk/JavaScriptCore/runtime/JSString.cpp
- Timestamp:
- Jul 1, 2010, 11:31:27 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/runtime/JSString.cpp
r61750 r62367 121 121 UStringImpl* matchString = 0; 122 122 int matchPosition = -1; 123 for (RopeIterator it(m_other.m_fibers , m_fiberCount); it != end; ++it) {123 for (RopeIterator it(m_other.m_fibers.data(), m_fiberCount); it != end; ++it) { 124 124 ++fiberCount; 125 125 if (matchString) … … 140 140 return throwOutOfMemoryError(exec); 141 141 142 for (RopeIterator it(m_other.m_fibers , m_fiberCount); it != end; ++it) {142 for (RopeIterator it(m_other.m_fibers.data(), m_fiberCount); it != end; ++it) { 143 143 UStringImpl* string = *it; 144 144 if (string != matchString) {
Note:
See TracChangeset
for help on using the changeset viewer.