Changeset 185773 in webkit
- Timestamp:
- Jun 19, 2015, 3:40:25 PM (11 years ago)
- Location:
- trunk/Source/JavaScriptCore
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
runtime/JSArray.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/ChangeLog
r185772 r185773 1 2015-06-19 Mark Lam <mark.lam@apple.com> 2 3 Gardening: fix build for EWS bots. 4 5 Not reviewed. 6 7 * runtime/JSArray.cpp: 8 (JSC::JSArray::setLengthWithArrayStorage): 9 1 10 2015-06-19 Michael Saboff <msaboff@apple.com> 2 11 -
trunk/Source/JavaScriptCore/runtime/JSArray.cpp
r185768 r185773 377 377 for (unsigned i = newLength; i < usedVectorLength; ++i) { 378 378 WriteBarrier<Unknown>& valueSlot = storage->m_vector[i]; 379 bool hadValue { valueSlot };379 bool hadValue = !!valueSlot; 380 380 valueSlot.clear(); 381 381 storage->m_numValuesInVector -= hadValue;
Note:
See TracChangeset
for help on using the changeset viewer.