Changeset 48976 in webkit for trunk/JavaScriptCore/wtf/FastMalloc.h
- Timestamp:
- Oct 1, 2009, 9:22:43 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/wtf/FastMalloc.h
r47093 r48976 214 214 // new by accident. 215 215 216 // We musn't customize the global operator new and delete for the Qt port. 217 #if !PLATFORM(QT) 218 216 219 WTF_PRIVATE_INLINE void* operator new(size_t size) { return fastMalloc(size); } 217 220 WTF_PRIVATE_INLINE void* operator new(size_t size, const std::nothrow_t&) throw() { return fastMalloc(size); } … … 225 228 #endif 226 229 230 #endif 231 227 232 #endif /* WTF_FastMalloc_h */
Note:
See TracChangeset
for help on using the changeset viewer.