File tree Expand file tree Collapse file tree 4 files changed +1
-4
lines changed Expand file tree Collapse file tree 4 files changed +1
-4
lines changed Original file line number Diff line number Diff line change @@ -731,7 +731,6 @@ config_define(${LIBCXX_ABI_VERSION} _LIBCPP_ABI_VERSION)
731731config_define(${LIBCXX_ABI_NAMESPACE} _LIBCPP_ABI_NAMESPACE)
732732config_define(${LIBCXX_ABI_FORCE_ITANIUM} _LIBCPP_ABI_FORCE_ITANIUM)
733733config_define(${LIBCXX_ABI_FORCE_MICROSOFT} _LIBCPP_ABI_FORCE_MICROSOFT)
734- config_define(${LIBCXX_CXX_ABI} _LIBCXX_CXX_ABI)
735734config_define(${LIBCXX_ENABLE_THREADS} _LIBCPP_HAS_THREADS)
736735config_define(${LIBCXX_ENABLE_MONOTONIC_CLOCK} _LIBCPP_HAS_MONOTONIC_CLOCK)
737736config_define(${LIBCXX_HAS_TERMINAL_AVAILABLE} _LIBCPP_HAS_TERMINAL)
Original file line number Diff line number Diff line change @@ -272,7 +272,6 @@ _LIBCPP_HIDE_FROM_ABI exception_ptr make_exception_ptr(_Ep __e) _NOEXCEPT {
272272}
273273
274274#endif // _LIBCPP_ABI_MICROSOFT
275-
276275_LIBCPP_END_UNVERSIONED_NAMESPACE_STD
277276
278277#if defined(_LIBCPP_CXX_ABI_NONE)
Original file line number Diff line number Diff line change @@ -35,9 +35,7 @@ class _LIBCPP_EXPORTED_FROM_ABI nested_exception {
3535public:
3636 nested_exception () _NOEXCEPT;
3737 _LIBCPP_HIDE_FROM_ABI nested_exception (const nested_exception&) _NOEXCEPT = default;
38- _LIBCPP_HIDE_FROM_ABI nested_exception (nested_exception&&) _NOEXCEPT = default;
3938 _LIBCPP_HIDE_FROM_ABI nested_exception& operator =(const nested_exception&) _NOEXCEPT = default ;
40- _LIBCPP_HIDE_FROM_ABI nested_exception& operator =(nested_exception&&) _NOEXCEPT = default ;
4139 virtual ~nested_exception () _NOEXCEPT;
4240
4341 // access functions
Original file line number Diff line number Diff line change 88// ===----------------------------------------------------------------------===//
99
1010#include < cxxabi.h>
11+
1112namespace std {
1213
1314bool uncaught_exception () noexcept { return uncaught_exceptions () > 0 ; }
You can’t perform that action at this time.
0 commit comments