blob: 6b164e1dbd11972bd948e75955d743f1b2dafc1e [file] [log] [blame]
Howard Hinnantc51e1022010-05-11 19:42:16 +00001// -*- C++ -*-
Louis Dionne9bd93882021-11-17 16:25:01 -05002//===----------------------------------------------------------------------===//
Howard Hinnantc51e1022010-05-11 19:42:16 +00003//
Chandler Carruthd2012102019-01-19 10:56:40 +00004// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
5// See https://llvm.org/LICENSE.txt for license information.
6// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
Howard Hinnantc51e1022010-05-11 19:42:16 +00007//
8//===----------------------------------------------------------------------===//
9
10#ifndef _LIBCPP_EXCEPTION
11#define _LIBCPP_EXCEPTION
12
13/*
14 exception synopsis
15
16namespace std
17{
18
19class exception
20{
21public:
Howard Hinnant1bc52cf2011-05-26 18:23:59 +000022 exception() noexcept;
23 exception(const exception&) noexcept;
24 exception& operator=(const exception&) noexcept;
25 virtual ~exception() noexcept;
26 virtual const char* what() const noexcept;
Howard Hinnantc51e1022010-05-11 19:42:16 +000027};
28
29class bad_exception
30 : public exception
31{
32public:
Howard Hinnant1bc52cf2011-05-26 18:23:59 +000033 bad_exception() noexcept;
34 bad_exception(const bad_exception&) noexcept;
35 bad_exception& operator=(const bad_exception&) noexcept;
36 virtual ~bad_exception() noexcept;
37 virtual const char* what() const noexcept;
Howard Hinnantc51e1022010-05-11 19:42:16 +000038};
39
40typedef void (*unexpected_handler)();
Howard Hinnant1bc52cf2011-05-26 18:23:59 +000041unexpected_handler set_unexpected(unexpected_handler f ) noexcept;
42unexpected_handler get_unexpected() noexcept;
43[[noreturn]] void unexpected();
Howard Hinnantc51e1022010-05-11 19:42:16 +000044
45typedef void (*terminate_handler)();
Howard Hinnant1bc52cf2011-05-26 18:23:59 +000046terminate_handler set_terminate(terminate_handler f ) noexcept;
47terminate_handler get_terminate() noexcept;
48[[noreturn]] void terminate() noexcept;
Howard Hinnantc51e1022010-05-11 19:42:16 +000049
Marshall Clow209dacc2015-06-02 15:33:38 +000050bool uncaught_exception() noexcept;
51int uncaught_exceptions() noexcept; // C++17
Howard Hinnantc51e1022010-05-11 19:42:16 +000052
53typedef unspecified exception_ptr;
54
Howard Hinnant1bc52cf2011-05-26 18:23:59 +000055exception_ptr current_exception() noexcept;
Howard Hinnantc51e1022010-05-11 19:42:16 +000056void rethrow_exception [[noreturn]] (exception_ptr p);
Howard Hinnant1bc52cf2011-05-26 18:23:59 +000057template<class E> exception_ptr make_exception_ptr(E e) noexcept;
Howard Hinnantc51e1022010-05-11 19:42:16 +000058
59class nested_exception
60{
61public:
Howard Hinnant1bc52cf2011-05-26 18:23:59 +000062 nested_exception() noexcept;
63 nested_exception(const nested_exception&) noexcept = default;
64 nested_exception& operator=(const nested_exception&) noexcept = default;
Howard Hinnantc51e1022010-05-11 19:42:16 +000065 virtual ~nested_exception() = default;
66
67 // access functions
Howard Hinnant1bc52cf2011-05-26 18:23:59 +000068 [[noreturn]] void rethrow_nested() const;
69 exception_ptr nested_ptr() const noexcept;
Howard Hinnantc51e1022010-05-11 19:42:16 +000070};
71
Howard Hinnant1bc52cf2011-05-26 18:23:59 +000072template <class T> [[noreturn]] void throw_with_nested(T&& t);
Howard Hinnantc51e1022010-05-11 19:42:16 +000073template <class E> void rethrow_if_nested(const E& e);
74
75} // std
76
77*/
78
Louis Dionneb4fce352022-03-25 12:55:36 -040079#include <__assert> // all public C++ headers provide the assertion handler
Louis Dionne73912b22020-11-04 15:01:25 -050080#include <__availability>
Arthur O'Dwyeref181602021-05-19 11:57:04 -040081#include <__config>
Louis Dionne735bc462021-04-14 13:59:03 -040082#include <__memory/addressof.h>
Howard Hinnantc51e1022010-05-11 19:42:16 +000083#include <cstddef>
Eric Fiselieraae1ccf2016-12-03 03:22:11 +000084#include <cstdlib>
Howard Hinnante4f92722010-05-27 17:06:52 +000085#include <type_traits>
Marshall Clow0a1e7502018-09-12 19:41:40 +000086#include <version>
Howard Hinnantc51e1022010-05-11 19:42:16 +000087
Paul Kirthdb722162022-08-17 20:57:59 +000088// <vcruntime_exception.h> defines its own std::exception and std::bad_exception types,
89// which we use in order to be ABI-compatible with other STLs on Windows.
Eric Fiselier85f66332019-03-05 01:57:01 +000090#if defined(_LIBCPP_ABI_VCRUNTIME)
Paul Kirthdb722162022-08-17 20:57:59 +000091# include <vcruntime_exception.h>
Eric Fiselierec3a1672017-02-10 08:57:35 +000092#endif
93
Howard Hinnantaaaa52b2011-10-17 20:05:10 +000094#if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
Arthur O'Dwyer6eeaa002022-02-01 20:16:40 -050095# pragma GCC system_header
Howard Hinnantaaaa52b2011-10-17 20:05:10 +000096#endif
Howard Hinnantc51e1022010-05-11 19:42:16 +000097
98namespace std // purposefully not using versioning namespace
99{
100
Paul Kirthdb722162022-08-17 20:57:59 +0000101#if defined(_LIBCPP_ABI_VCRUNTIME) && (!defined(_HAS_EXCEPTIONS) || _HAS_EXCEPTIONS != 0)
102// The std::exception class was already included above, but we're explicit about this condition here for clarity.
Dimitry Andric47269ce2020-03-13 19:36:26 +0100103
Paul Kirthdb722162022-08-17 20:57:59 +0000104#elif defined(_LIBCPP_ABI_VCRUNTIME) && _HAS_EXCEPTIONS == 0
105// However, <vcruntime_exception.h> does not define std::exception and std::bad_exception
106// when _HAS_EXCEPTIONS == 0.
107//
108// Since libc++ still wants to provide the std::exception hierarchy even when _HAS_EXCEPTIONS == 0
109// (after all those are simply types like any other), we define an ABI-compatible version
110// of the VCRuntime std::exception and std::bad_exception types in that mode.
111
112struct __std_exception_data {
113 char const* _What;
114 bool _DoFree;
Howard Hinnantc51e1022010-05-11 19:42:16 +0000115};
116
Paul Kirthdb722162022-08-17 20:57:59 +0000117class exception { // base of all library exceptions
Howard Hinnantc51e1022010-05-11 19:42:16 +0000118public:
Paul Kirthdb722162022-08-17 20:57:59 +0000119 exception() _NOEXCEPT : _Data() {}
120
121 explicit exception(char const* __message) _NOEXCEPT : _Data() {
122 _Data._What = __message;
123 _Data._DoFree = true;
124 }
125
126 exception(exception const&) _NOEXCEPT {}
127
128 exception& operator=(exception const&) _NOEXCEPT { return *this; }
129
130 virtual ~exception() _NOEXCEPT {}
131
132 virtual char const* what() const _NOEXCEPT { return _Data._What ? _Data._What : "Unknown exception"; }
133
134private:
135 __std_exception_data _Data;
136};
137
138class bad_exception : public exception {
139public:
140 bad_exception() _NOEXCEPT : exception("bad exception") {}
141};
142
143#else // !defined(_LIBCPP_ABI_VCRUNTIME)
144// On all other platforms, we define our own std::exception and std::bad_exception types
145// regardless of whether exceptions are turned on as a language feature.
146
147class _LIBCPP_EXCEPTION_ABI exception {
148public:
149 _LIBCPP_INLINE_VISIBILITY exception() _NOEXCEPT {}
150 _LIBCPP_INLINE_VISIBILITY exception(const exception&) _NOEXCEPT = default;
151
152 virtual ~exception() _NOEXCEPT;
153 virtual const char* what() const _NOEXCEPT;
154};
155
156class _LIBCPP_EXCEPTION_ABI bad_exception : public exception {
157public:
158 _LIBCPP_INLINE_VISIBILITY bad_exception() _NOEXCEPT {}
159 virtual ~bad_exception() _NOEXCEPT;
160 virtual const char* what() const _NOEXCEPT;
Howard Hinnantc51e1022010-05-11 19:42:16 +0000161};
Eric Fiselier85f66332019-03-05 01:57:01 +0000162#endif // !_LIBCPP_ABI_VCRUNTIME
Howard Hinnantc51e1022010-05-11 19:42:16 +0000163
Eric Fiselierddd77792017-02-17 03:25:08 +0000164#if _LIBCPP_STD_VER <= 14 \
165 || defined(_LIBCPP_ENABLE_CXX17_REMOVED_UNEXPECTED_FUNCTIONS) \
166 || defined(_LIBCPP_BUILDING_LIBRARY)
Howard Hinnantc51e1022010-05-11 19:42:16 +0000167typedef void (*unexpected_handler)();
Howard Hinnant8331b762013-03-06 23:30:19 +0000168_LIBCPP_FUNC_VIS unexpected_handler set_unexpected(unexpected_handler) _NOEXCEPT;
169_LIBCPP_FUNC_VIS unexpected_handler get_unexpected() _NOEXCEPT;
170_LIBCPP_NORETURN _LIBCPP_FUNC_VIS void unexpected();
Eric Fiselierddd77792017-02-17 03:25:08 +0000171#endif
Howard Hinnantc51e1022010-05-11 19:42:16 +0000172
173typedef void (*terminate_handler)();
Howard Hinnant8331b762013-03-06 23:30:19 +0000174_LIBCPP_FUNC_VIS terminate_handler set_terminate(terminate_handler) _NOEXCEPT;
175_LIBCPP_FUNC_VIS terminate_handler get_terminate() _NOEXCEPT;
176_LIBCPP_NORETURN _LIBCPP_FUNC_VIS void terminate() _NOEXCEPT;
Howard Hinnantc51e1022010-05-11 19:42:16 +0000177
Howard Hinnant8331b762013-03-06 23:30:19 +0000178_LIBCPP_FUNC_VIS bool uncaught_exception() _NOEXCEPT;
Mehdi Amini228053d2017-05-04 17:08:54 +0000179_LIBCPP_FUNC_VIS _LIBCPP_AVAILABILITY_UNCAUGHT_EXCEPTIONS int uncaught_exceptions() _NOEXCEPT;
Howard Hinnantc51e1022010-05-11 19:42:16 +0000180
Howard Hinnant8331b762013-03-06 23:30:19 +0000181class _LIBCPP_TYPE_VIS exception_ptr;
Howard Hinnantc51e1022010-05-11 19:42:16 +0000182
Howard Hinnanta37d3cf2013-08-12 18:38:34 +0000183_LIBCPP_FUNC_VIS exception_ptr current_exception() _NOEXCEPT;
184_LIBCPP_NORETURN _LIBCPP_FUNC_VIS void rethrow_exception(exception_ptr);
Howard Hinnantc51e1022010-05-11 19:42:16 +0000185
Eric Fiselier94ef6cc2017-05-08 01:17:50 +0000186#ifndef _LIBCPP_ABI_MICROSOFT
187
Howard Hinnant8331b762013-03-06 23:30:19 +0000188class _LIBCPP_TYPE_VIS exception_ptr
Howard Hinnantc51e1022010-05-11 19:42:16 +0000189{
190 void* __ptr_;
191public:
Howard Hinnant1bc52cf2011-05-26 18:23:59 +0000192 _LIBCPP_INLINE_VISIBILITY exception_ptr() _NOEXCEPT : __ptr_() {}
193 _LIBCPP_INLINE_VISIBILITY exception_ptr(nullptr_t) _NOEXCEPT : __ptr_() {}
Eric Fiselier94ef6cc2017-05-08 01:17:50 +0000194
Howard Hinnant1bc52cf2011-05-26 18:23:59 +0000195 exception_ptr(const exception_ptr&) _NOEXCEPT;
196 exception_ptr& operator=(const exception_ptr&) _NOEXCEPT;
197 ~exception_ptr() _NOEXCEPT;
Howard Hinnantc51e1022010-05-11 19:42:16 +0000198
Arthur O'Dwyer6c9c9a72021-06-15 12:57:54 -0400199 _LIBCPP_INLINE_VISIBILITY explicit operator bool() const _NOEXCEPT
Eric Fiselier94ef6cc2017-05-08 01:17:50 +0000200 {return __ptr_ != nullptr;}
Howard Hinnantc51e1022010-05-11 19:42:16 +0000201
Howard Hinnant874ad9a2010-09-21 21:28:23 +0000202 friend _LIBCPP_INLINE_VISIBILITY
Howard Hinnant1bc52cf2011-05-26 18:23:59 +0000203 bool operator==(const exception_ptr& __x, const exception_ptr& __y) _NOEXCEPT
Howard Hinnantc51e1022010-05-11 19:42:16 +0000204 {return __x.__ptr_ == __y.__ptr_;}
Eric Fiselier94ef6cc2017-05-08 01:17:50 +0000205
Howard Hinnant874ad9a2010-09-21 21:28:23 +0000206 friend _LIBCPP_INLINE_VISIBILITY
Howard Hinnant1bc52cf2011-05-26 18:23:59 +0000207 bool operator!=(const exception_ptr& __x, const exception_ptr& __y) _NOEXCEPT
Howard Hinnantc51e1022010-05-11 19:42:16 +0000208 {return !(__x == __y);}
209
Howard Hinnanta37d3cf2013-08-12 18:38:34 +0000210 friend _LIBCPP_FUNC_VIS exception_ptr current_exception() _NOEXCEPT;
211 friend _LIBCPP_FUNC_VIS void rethrow_exception(exception_ptr);
Howard Hinnantc51e1022010-05-11 19:42:16 +0000212};
213
Howard Hinnantc834c512011-11-29 18:15:50 +0000214template<class _Ep>
Louis Dionnecdc41112018-11-21 17:00:52 +0000215_LIBCPP_INLINE_VISIBILITY exception_ptr
Howard Hinnantc834c512011-11-29 18:15:50 +0000216make_exception_ptr(_Ep __e) _NOEXCEPT
Howard Hinnantc51e1022010-05-11 19:42:16 +0000217{
Howard Hinnant72f73582010-08-11 17:04:31 +0000218#ifndef _LIBCPP_NO_EXCEPTIONS
Howard Hinnantc51e1022010-05-11 19:42:16 +0000219 try
220 {
221 throw __e;
222 }
223 catch (...)
224 {
225 return current_exception();
226 }
Eric Fiselieraae1ccf2016-12-03 03:22:11 +0000227#else
Eric Fiselier6003c772016-12-23 23:37:52 +0000228 ((void)__e);
Eric Fiselieraae1ccf2016-12-03 03:22:11 +0000229 _VSTD::abort();
230#endif
Howard Hinnantc51e1022010-05-11 19:42:16 +0000231}
232
Eric Fiselier94ef6cc2017-05-08 01:17:50 +0000233#else // _LIBCPP_ABI_MICROSOFT
234
235class _LIBCPP_TYPE_VIS exception_ptr
236{
Nikolas Klauser41c59762022-02-14 18:52:28 +0100237_LIBCPP_DIAGNOSTIC_PUSH
238_LIBCPP_CLANG_DIAGNOSTIC_IGNORED("-Wunused-private-field")
Eric Fiselier94ef6cc2017-05-08 01:17:50 +0000239 void* __ptr1_;
240 void* __ptr2_;
Nikolas Klauser41c59762022-02-14 18:52:28 +0100241_LIBCPP_DIAGNOSTIC_POP
Eric Fiselier94ef6cc2017-05-08 01:17:50 +0000242public:
243 exception_ptr() _NOEXCEPT;
244 exception_ptr(nullptr_t) _NOEXCEPT;
245 exception_ptr(const exception_ptr& __other) _NOEXCEPT;
246 exception_ptr& operator=(const exception_ptr& __other) _NOEXCEPT;
247 exception_ptr& operator=(nullptr_t) _NOEXCEPT;
248 ~exception_ptr() _NOEXCEPT;
Arthur O'Dwyer6c9c9a72021-06-15 12:57:54 -0400249 explicit operator bool() const _NOEXCEPT;
Eric Fiselier94ef6cc2017-05-08 01:17:50 +0000250};
251
252_LIBCPP_FUNC_VIS
253bool operator==(const exception_ptr& __x, const exception_ptr& __y) _NOEXCEPT;
254
255inline _LIBCPP_INLINE_VISIBILITY
256bool operator!=(const exception_ptr& __x, const exception_ptr& __y) _NOEXCEPT
257 {return !(__x == __y);}
258
259_LIBCPP_FUNC_VIS void swap(exception_ptr&, exception_ptr&) _NOEXCEPT;
260
261_LIBCPP_FUNC_VIS exception_ptr __copy_exception_ptr(void *__except, const void* __ptr);
262_LIBCPP_FUNC_VIS exception_ptr current_exception() _NOEXCEPT;
Nikolas Klauser7b8c0502022-07-08 18:17:26 +0200263_LIBCPP_NORETURN _LIBCPP_FUNC_VIS void rethrow_exception(exception_ptr);
Eric Fiselier94ef6cc2017-05-08 01:17:50 +0000264
265// This is a built-in template function which automagically extracts the required
266// information.
267template <class _E> void *__GetExceptionInfo(_E);
268
269template<class _Ep>
Louis Dionnecdc41112018-11-21 17:00:52 +0000270_LIBCPP_INLINE_VISIBILITY exception_ptr
Eric Fiselier94ef6cc2017-05-08 01:17:50 +0000271make_exception_ptr(_Ep __e) _NOEXCEPT
272{
273 return __copy_exception_ptr(_VSTD::addressof(__e), __GetExceptionInfo(__e));
274}
275
276#endif // _LIBCPP_ABI_MICROSOFT
Howard Hinnante4f92722010-05-27 17:06:52 +0000277// nested_exception
278
279class _LIBCPP_EXCEPTION_ABI nested_exception
280{
281 exception_ptr __ptr_;
282public:
Howard Hinnant1bc52cf2011-05-26 18:23:59 +0000283 nested_exception() _NOEXCEPT;
284// nested_exception(const nested_exception&) noexcept = default;
285// nested_exception& operator=(const nested_exception&) noexcept = default;
286 virtual ~nested_exception() _NOEXCEPT;
Howard Hinnante4f92722010-05-27 17:06:52 +0000287
288 // access functions
Richard Smithcabd3922012-07-26 02:04:22 +0000289 _LIBCPP_NORETURN void rethrow_nested() const;
Howard Hinnant1bc52cf2011-05-26 18:23:59 +0000290 _LIBCPP_INLINE_VISIBILITY exception_ptr nested_ptr() const _NOEXCEPT {return __ptr_;}
Howard Hinnante4f92722010-05-27 17:06:52 +0000291};
292
293template <class _Tp>
294struct __nested
295 : public _Tp,
296 public nested_exception
297{
Howard Hinnant874ad9a2010-09-21 21:28:23 +0000298 _LIBCPP_INLINE_VISIBILITY explicit __nested(const _Tp& __t) : _Tp(__t) {}
Howard Hinnante4f92722010-05-27 17:06:52 +0000299};
300
Howard Hinnant72f73582010-08-11 17:04:31 +0000301#ifndef _LIBCPP_NO_EXCEPTIONS
Marshall Clowb1cf5a92017-04-13 14:41:45 +0000302template <class _Tp, class _Up, bool>
303struct __throw_with_nested;
304
305template <class _Tp, class _Up>
306struct __throw_with_nested<_Tp, _Up, true> {
Louis Dionne16fe2952018-07-11 23:14:33 +0000307 _LIBCPP_NORETURN static inline _LIBCPP_INLINE_VISIBILITY void
Marshall Clowb1cf5a92017-04-13 14:41:45 +0000308 __do_throw(_Tp&& __t)
Marshall Clowb1cf5a92017-04-13 14:41:45 +0000309 {
Christopher Di Bella41f26e82021-06-05 02:47:47 +0000310 throw __nested<_Up>(static_cast<_Tp&&>(__t));
Marshall Clowb1cf5a92017-04-13 14:41:45 +0000311 }
312};
313
314template <class _Tp, class _Up>
315struct __throw_with_nested<_Tp, _Up, false> {
Louis Dionne16fe2952018-07-11 23:14:33 +0000316 _LIBCPP_NORETURN static inline _LIBCPP_INLINE_VISIBILITY void
Eric Fiselier58e1c912017-04-19 01:35:58 +0000317#ifndef _LIBCPP_CXX03_LANG
Marshall Clowb1cf5a92017-04-13 14:41:45 +0000318 __do_throw(_Tp&& __t)
Eric Fiselier58e1c912017-04-19 01:35:58 +0000319#else
Marshall Clowb1cf5a92017-04-13 14:41:45 +0000320 __do_throw (_Tp& __t)
Louis Dionne2b1ceaa2021-04-20 12:03:32 -0400321#endif // _LIBCPP_CXX03_LANG
Marshall Clowb1cf5a92017-04-13 14:41:45 +0000322 {
Christopher Di Bella41f26e82021-06-05 02:47:47 +0000323 throw static_cast<_Tp&&>(__t);
Marshall Clowb1cf5a92017-04-13 14:41:45 +0000324 }
325};
Howard Hinnant72f73582010-08-11 17:04:31 +0000326#endif
Howard Hinnante4f92722010-05-27 17:06:52 +0000327
328template <class _Tp>
Nikolas Klausera9ad6702022-08-13 13:23:16 +0200329_LIBCPP_NORETURN _LIBCPP_HIDE_FROM_ABI
Howard Hinnant3b6579a2010-08-22 00:02:43 +0000330void
Marshall Clowb1cf5a92017-04-13 14:41:45 +0000331throw_with_nested(_Tp&& __t)
Howard Hinnante4f92722010-05-27 17:06:52 +0000332{
Howard Hinnant72f73582010-08-11 17:04:31 +0000333#ifndef _LIBCPP_NO_EXCEPTIONS
Marshall Clow94a38502017-04-13 16:57:42 +0000334 typedef typename decay<_Tp>::type _Up;
335 static_assert( is_copy_constructible<_Up>::value, "type thrown must be CopyConstructible");
Marshall Clowb1cf5a92017-04-13 14:41:45 +0000336 __throw_with_nested<_Tp, _Up,
337 is_class<_Up>::value &&
338 !is_base_of<nested_exception, _Up>::value &&
339 !__libcpp_is_final<_Up>::value>::
Christopher Di Bella41f26e82021-06-05 02:47:47 +0000340 __do_throw(static_cast<_Tp&&>(__t));
Eric Fiselier6003c772016-12-23 23:37:52 +0000341#else
342 ((void)__t);
343 // FIXME: Make this abort
Howard Hinnant72f73582010-08-11 17:04:31 +0000344#endif
Howard Hinnante4f92722010-05-27 17:06:52 +0000345}
346
Marshall Clowb75c89c2017-03-14 17:08:47 +0000347template <class _From, class _To>
Louis Dionne5083aef2022-03-23 17:02:07 -0400348struct __can_dynamic_cast : _BoolConstant<
Marshall Clowb75c89c2017-03-14 17:08:47 +0000349 is_polymorphic<_From>::value &&
350 (!is_base_of<_To, _From>::value ||
Louis Dionne5083aef2022-03-23 17:02:07 -0400351 is_convertible<const _From*, const _To*>::value)> {};
Marshall Clowb75c89c2017-03-14 17:08:47 +0000352
Howard Hinnantc834c512011-11-29 18:15:50 +0000353template <class _Ep>
Howard Hinnant874ad9a2010-09-21 21:28:23 +0000354inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnante4f92722010-05-27 17:06:52 +0000355void
Marshall Clowb75c89c2017-03-14 17:08:47 +0000356rethrow_if_nested(const _Ep& __e,
Nikolas Klauser7537c9c2022-07-04 01:21:44 +0200357 __enable_if_t< __can_dynamic_cast<_Ep, nested_exception>::value>* = 0)
Howard Hinnante4f92722010-05-27 17:06:52 +0000358{
Marshall Clowe993abe2015-12-14 18:01:56 +0000359 const nested_exception* __nep = dynamic_cast<const nested_exception*>(_VSTD::addressof(__e));
Howard Hinnant3615a192010-05-28 13:35:41 +0000360 if (__nep)
361 __nep->rethrow_nested();
Howard Hinnante4f92722010-05-27 17:06:52 +0000362}
363
Howard Hinnantc834c512011-11-29 18:15:50 +0000364template <class _Ep>
Howard Hinnant874ad9a2010-09-21 21:28:23 +0000365inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnante4f92722010-05-27 17:06:52 +0000366void
Marshall Clowb75c89c2017-03-14 17:08:47 +0000367rethrow_if_nested(const _Ep&,
Nikolas Klauser7537c9c2022-07-04 01:21:44 +0200368 __enable_if_t<!__can_dynamic_cast<_Ep, nested_exception>::value>* = 0)
Howard Hinnante4f92722010-05-27 17:06:52 +0000369{
370}
371
Nikolas Klauserd26407a2021-12-02 14:12:51 +0100372} // namespace std
Howard Hinnantc51e1022010-05-11 19:42:16 +0000373
Louis Dionne2b1ceaa2021-04-20 12:03:32 -0400374#endif // _LIBCPP_EXCEPTION