Changeset 94875 in vbox for trunk/src/VBox/Runtime/r3/alloc-ef-cpp.cpp
- Timestamp:
- May 6, 2022 2:30:04 AM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r3/alloc-ef-cpp.cpp
r93115 r94875 62 62 # ifdef _GLIBCXX_THROW 63 63 # define RT_EF_THROWS_BAD_ALLOC _GLIBCXX_THROW(std::bad_alloc) 64 # elif defined(__cplusplus) && (__cplusplus + 0) < 201700 65 # define RT_EF_THROWS_BAD_ALLOC throw(std::bad_alloc) 64 66 # else 65 # define RT_EF_THROWS_BAD_ALLOC throw(std::bad_alloc)67 # define RT_EF_THROWS_BAD_ALLOC noexcept(false) 66 68 # endif 67 69 # define RT_EF_NOTHROW throw()
Note:
See TracChangeset
for help on using the changeset viewer.