Lines Matching defs:__exception_guard_noexceptions
97 struct __exception_guard_noexceptions {
98 __exception_guard_noexceptions() = delete;
100 _LIBCPP_CONSTEXPR_SINCE_CXX20 explicit __exception_guard_noexceptions(_Rollback) {}
103 __exception_guard_noexceptions(__exception_guard_noexceptions&& __other)
109 __exception_guard_noexceptions(__exception_guard_noexceptions const&) = delete;
110 __exception_guard_noexceptions& operator=(__exception_guard_noexceptions const&) = delete;
111 __exception_guard_noexceptions& operator=(__exception_guard_noexceptions&&) = delete;
117 _LIBCPP_NODEBUG _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX20 ~__exception_guard_noexceptions() {
125 _LIBCPP_CTAD_SUPPORTED_FOR_TYPE(__exception_guard_noexceptions);
129 using __exception_guard _LIBCPP_NODEBUG = __exception_guard_noexceptions<_Rollback>;