Skip to content

Commit 2302ae7

Browse files
committed
Remove minor unrelated changes
1 parent dd676f3 commit 2302ae7

File tree

4 files changed

+1
-4
lines changed

4 files changed

+1
-4
lines changed

libcxx/CMakeLists.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -731,7 +731,6 @@ config_define(${LIBCXX_ABI_VERSION} _LIBCPP_ABI_VERSION)
731731
config_define(${LIBCXX_ABI_NAMESPACE} _LIBCPP_ABI_NAMESPACE)
732732
config_define(${LIBCXX_ABI_FORCE_ITANIUM} _LIBCPP_ABI_FORCE_ITANIUM)
733733
config_define(${LIBCXX_ABI_FORCE_MICROSOFT} _LIBCPP_ABI_FORCE_MICROSOFT)
734-
config_define(${LIBCXX_CXX_ABI} _LIBCXX_CXX_ABI)
735734
config_define(${LIBCXX_ENABLE_THREADS} _LIBCPP_HAS_THREADS)
736735
config_define(${LIBCXX_ENABLE_MONOTONIC_CLOCK} _LIBCPP_HAS_MONOTONIC_CLOCK)
737736
config_define(${LIBCXX_HAS_TERMINAL_AVAILABLE} _LIBCPP_HAS_TERMINAL)

libcxx/include/__exception/exception_ptr.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff 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)

libcxx/include/__exception/nested_exception.h

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,7 @@ class _LIBCPP_EXPORTED_FROM_ABI nested_exception {
3535
public:
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

libcxx/src/support/runtime/exception_libcxxabi.ipp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
//===----------------------------------------------------------------------===//
99

1010
#include <cxxabi.h>
11+
1112
namespace std {
1213

1314
bool uncaught_exception() noexcept { return uncaught_exceptions() > 0; }

0 commit comments

Comments
 (0)