Changeset 17372 in webkit for trunk/JavaScriptCore/kjs/collector.cpp
- Timestamp:
- Oct 27, 2006, 9:48:28 AM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/collector.cpp
r16797 r17372 188 188 targetBlock->freeList = reinterpret_cast<CollectorCell *>(reinterpret_cast<char *>(newCell + 1) + newCell->u.freeCell.next); 189 189 190 targetBlock->usedCells = targetBlockUsedCells + 1;190 targetBlock->usedCells = static_cast<uint32_t>(targetBlockUsedCells + 1); 191 191 heap.numLiveObjects = numLiveObjects + 1; 192 192 … … 301 301 { 302 302 jmp_buf registers; 303 #if COMPILER(MSVC) 304 #pragma warning(push) 305 #pragma warning(disable: 4611) 306 #endif 303 307 setjmp(registers); 308 #if COMPILER(MSVC) 309 #pragma warning(pop) 310 #endif 304 311 305 312 #if PLATFORM(DARWIN) … … 533 540 } 534 541 535 curBlock->usedCells = usedCells;542 curBlock->usedCells = static_cast<uint32_t>(usedCells); 536 543 curBlock->freeList = freeList; 537 544
Note:
See TracChangeset
for help on using the changeset viewer.