Changeset 40869 in vbox for trunk/include
- Timestamp:
- Apr 11, 2012 3:29:11 PM (13 years ago)
- Location:
- trunk/include/iprt
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/cdefs.h
r40838 r40869 600 600 #ifdef RT_EXCEPTIONS_ENABLED 601 601 # ifdef _MSC_VER 602 # if _MSC_VER >= 1 400602 # if _MSC_VER >= 1310 603 603 # define RT_THROW(type) 604 604 # else -
trunk/include/iprt/mem.h
r40314 r40869 729 729 return pv; \ 730 730 } \ 731 void *operator new(size_t cb, const std::nothrow_t ¬hrow_constant) throw()\731 void *operator new(size_t cb, const std::nothrow_t ¬hrow_constant) RT_NO_THROW \ 732 732 { \ 733 733 NOREF(nothrow_constant); \ … … 741 741 return pv; \ 742 742 } \ 743 void *operator new[](size_t cb, const std::nothrow_t ¬hrow_constant) throw()\743 void *operator new[](size_t cb, const std::nothrow_t ¬hrow_constant) RT_NO_THROW \ 744 744 { \ 745 745 NOREF(nothrow_constant); \ … … 747 747 } \ 748 748 \ 749 void operator delete(void *pv) throw()\749 void operator delete(void *pv) RT_NO_THROW \ 750 750 { \ 751 751 RTMemEfFree(pv, RT_SRC_POS); \ 752 752 } \ 753 void operator delete(void *pv, const std::nothrow_t ¬hrow_constant) throw()\753 void operator delete(void *pv, const std::nothrow_t ¬hrow_constant) RT_NO_THROW \ 754 754 { \ 755 755 NOREF(nothrow_constant); \ 756 756 RTMemEfFree(pv, RT_SRC_POS); \ 757 757 } \ 758 void operator delete[](void *pv) throw()\758 void operator delete[](void *pv) RT_NO_THROW \ 759 759 { \ 760 760 RTMemEfFree(pv, RT_SRC_POS); \ 761 761 } \ 762 void operator delete[](void *pv, const std::nothrow_t ¬hrow_constant) throw()\762 void operator delete[](void *pv, const std::nothrow_t ¬hrow_constant) RT_NO_THROW \ 763 763 { \ 764 764 NOREF(nothrow_constant); \
Note:
See TracChangeset
for help on using the changeset viewer.