libstdc++
GNU C++ library
Loading...
Searching...
No Matches

◆ ~exception_ptr()

std::__unspecified__::exception_ptr::~exception_ptr ( )
inlinenoexcept

Definition at line 254 of file exception_ptr.h.

255 {
257 {
258#if __cpp_if_consteval >= 202106L \
259 && _GLIBCXX_HAS_BUILTIN(__builtin_eh_ptr_adjust_ref)
260 if consteval {
261 __builtin_eh_ptr_adjust_ref(_M_exception_object, -1);
262 return;
263 }
264#endif
265 _M_release();
266 }
267 }