Lines Matching defs:__exception_guard_exceptions
65 struct __exception_guard_exceptions {
66 __exception_guard_exceptions() = delete;
68 _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX20 explicit __exception_guard_exceptions(_Rollback __rollback)
72 __exception_guard_exceptions(__exception_guard_exceptions&& __other)
78 __exception_guard_exceptions(__exception_guard_exceptions const&) = delete;
79 __exception_guard_exceptions& operator=(__exception_guard_exceptions const&) = delete;
80 __exception_guard_exceptions& operator=(__exception_guard_exceptions&&) = delete;
84 _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX20 ~__exception_guard_exceptions() {
94 _LIBCPP_CTAD_SUPPORTED_FOR_TYPE(__exception_guard_exceptions);
132 using __exception_guard _LIBCPP_NODEBUG = __exception_guard_exceptions<_Rollback>;