diff options
author | Mark de Wever <koraq@xs4all.nl> | 2025-04-14 18:55:01 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-04-14 18:55:01 +0200 |
commit | 1175f5b988ce706fd3e084912ed34ae6254f5cc3 (patch) | |
tree | 2a27d09828adade94dd02a0c1542a1dd0b453a8c /libcxx/src | |
parent | 88c3e0eecffd42c6743638db51ad6db379996ff2 (diff) | |
download | llvm-1175f5b988ce706fd3e084912ed34ae6254f5cc3.zip llvm-1175f5b988ce706fd3e084912ed34ae6254f5cc3.tar.gz llvm-1175f5b988ce706fd3e084912ed34ae6254f5cc3.tar.bz2 |
[libc++] Removes the _LIBCPP_VERBOSE_ABORT_NOT_NOEXCEPT macro. (#135494)
This makes __libcpp_verbose_abort unconditionally noexcept. This was
planned for the upcomming release.
Diffstat (limited to 'libcxx/src')
-rw-r--r-- | libcxx/src/verbose_abort.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libcxx/src/verbose_abort.cpp b/libcxx/src/verbose_abort.cpp index fd6bc49..94bdb45 100644 --- a/libcxx/src/verbose_abort.cpp +++ b/libcxx/src/verbose_abort.cpp @@ -23,7 +23,7 @@ extern "C" void android_set_abort_message(const char* msg); _LIBCPP_BEGIN_NAMESPACE_STD -_LIBCPP_WEAK void __libcpp_verbose_abort(char const* format, ...) _LIBCPP_VERBOSE_ABORT_NOEXCEPT { +_LIBCPP_WEAK void __libcpp_verbose_abort(char const* format, ...) noexcept { // Write message to stderr. We do this before formatting into a // buffer so that we still get some information out if that fails. { |