Changeset 96936 in webkit for trunk/Source/JavaScriptCore/wtf
- Timestamp:
- Oct 7, 2011, 7:49:45 AM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/wtf/MetaAllocator.cpp
r95901 r96936 154 154 m_numAllocations++; 155 155 #endif 156 return adoptRef(new MetaAllocatorHandle(this, start, sizeInBytes)); 156 157 MetaAllocatorHandle* handle = new MetaAllocatorHandle(this, start, sizeInBytes); 158 // FIXME: Implement a verifier scheme that groks MetaAllocatorHandles 159 handle->deprecatedTurnOffVerifier(); 160 161 return adoptRef(handle); 157 162 } 158 163
Note:
See TracChangeset
for help on using the changeset viewer.