Changeset 77614 in webkit for trunk/Source/JavaScriptCore/runtime/Heap.cpp
- Timestamp:
- Feb 4, 2011, 12:12:42 AM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/runtime/Heap.cpp
r77612 r77614 388 388 389 389 size_t usedCellCount = m_markedSpace.markedCells(); 390 size_t proportionalBytes = usedCellCount * 1.5 * HeapConstants::cellSize;390 size_t proportionalBytes = static_cast<size_t>(usedCellCount * 1.5 * HeapConstants::cellSize); 391 391 m_markedSpace.setHighWaterMark(max(proportionalBytes, minBytesPerCycle)); 392 392
Note:
See TracChangeset
for help on using the changeset viewer.