Changeset 23515 in webkit for trunk/JavaScriptCore/wtf/FastMalloc.h
- Timestamp:
- Jun 13, 2007, 7:23:29 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/wtf/FastMalloc.h
r21783 r23515 62 62 #ifndef _CRTDBG_MAP_ALLOC 63 63 64 #if !(USE_SYSTEM_MALLOC) 64 65 WTF_PRIVATE_INLINE void* operator new(size_t s) { return fastMalloc(s); } 65 66 WTF_PRIVATE_INLINE void operator delete(void* p) { fastFree(p); } 66 67 WTF_PRIVATE_INLINE void* operator new[](size_t s) { return fastMalloc(s); } 67 68 WTF_PRIVATE_INLINE void operator delete[](void* p) { fastFree(p); } 69 #endif 68 70 69 71 #endif // _CRTDBG_MAP_ALLOC
Note:
See TracChangeset
for help on using the changeset viewer.