Changeset 23518 in webkit for trunk/JavaScriptCore/wtf/FastMalloc.h
- Timestamp:
- Jun 13, 2007, 7:48:12 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/wtf/FastMalloc.h
r23515 r23518 62 62 #ifndef _CRTDBG_MAP_ALLOC 63 63 64 #if ! (USE_SYSTEM_MALLOC)64 #if !defined(USE_SYSTEM_MALLOC) || !(USE_SYSTEM_MALLOC) 65 65 WTF_PRIVATE_INLINE void* operator new(size_t s) { return fastMalloc(s); } 66 66 WTF_PRIVATE_INLINE void operator delete(void* p) { fastFree(p); }
Note:
See TracChangeset
for help on using the changeset viewer.