- Timestamp:
- Jan 18, 2012 11:10:00 AM (13 years ago)
- svn:sync-xref-src-repo-rev:
- 75753
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/include/iprt/mem.h ¶
r36569 r39792 718 718 # if defined(RT_EXCEPTIONS_ENABLED) 719 719 # define RTMEMEF_NEW_AND_DELETE_OPERATORS() \ 720 void *operator new(size_t cb) throw(std::bad_alloc) \720 void *operator new(size_t cb) RT_THROW(std::bad_alloc) \ 721 721 { \ 722 722 void *pv = RTMemEfAlloc(cb, RTMEM_TAG, RT_SRC_POS); \ … … 730 730 return RTMemEfAlloc(cb, RTMEM_TAG, RT_SRC_POS); \ 731 731 } \ 732 void *operator new[](size_t cb) throw(std::bad_alloc) \732 void *operator new[](size_t cb) RT_THROW(std::bad_alloc) \ 733 733 { \ 734 734 void *pv = RTMemEfAlloc(cb, RTMEM_TAG, RT_SRC_POS); \
Note:
See TracChangeset
for help on using the changeset viewer.