Changeset 2788 in webkit for trunk/JavaScriptCore/kjs/collector.cpp
- Timestamp:
- Nov 20, 2002, 2:26:35 PM (23 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/collector.cpp
r2783 r2788 101 101 heap.usedOversizeCells++; 102 102 heap.numLiveObjects++; 103 104 return (void *)newCell; 103 104 ((ValueImp *)(newCell))->_flags = 0; 105 return newCell; 105 106 } 106 107 … … 143 144 targetBlock->usedCells++; 144 145 heap.numLiveObjects++; 146 147 ((ValueImp *)(targetBlock->cells + cellPos))->_flags = 0; 145 148 return (void *)(targetBlock->cells + cellPos); 146 149 }
Note:
See TracChangeset
for help on using the changeset viewer.