Changeset 26897 in webkit for trunk/JavaScriptCore/kjs/array_instance.cpp
- Timestamp:
- Oct 22, 2007, 3:18:24 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/array_instance.cpp
r26883 r26897 422 422 423 423 if (SparseArrayValueMap* map = storage->m_sparseValueMap) { 424 SparseArrayValueMap copy = *map; 425 SparseArrayValueMap::iterator end = copy.end(); 426 for (SparseArrayValueMap::iterator it = copy.begin(); it != end; ++it) { 424 SparseArrayValueMap::iterator end = map->end(); 425 for (SparseArrayValueMap::iterator it = map->begin(); it != end; ++it) { 427 426 JSValue* value = it->second; 428 427 if (!value->marked())
Note:
See TracChangeset
for help on using the changeset viewer.