Changeset 115538 in webkit for trunk/Source/JavaScriptCore/heap/WeakSet.h
- Timestamp:
- Apr 27, 2012, 9:26:01 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/heap/WeakSet.h
r115092 r115538 59 59 WeakBlock::FreeCell* m_allocator; 60 60 WeakBlock* m_nextAllocator; 61 DoublyLinkedList< HeapBlock> m_blocks;61 DoublyLinkedList<WeakBlock> m_blocks; 62 62 Heap* m_heap; 63 63 }; … … 83 83 inline void WeakSet::deallocate(WeakImpl* weakImpl) 84 84 { 85 WeakBlock::blockFor(weakImpl)->deallocate(weakImpl);85 weakImpl->setState(WeakImpl::Deallocated); 86 86 } 87 87
Note:
See TracChangeset
for help on using the changeset viewer.