aboutsummaryrefslogtreecommitdiff
path: root/libcxx/src
diff options
context:
space:
mode:
authorMark de Wever <koraq@xs4all.nl>2025-04-14 18:55:01 +0200
committerGitHub <noreply@github.com>2025-04-14 18:55:01 +0200
commit1175f5b988ce706fd3e084912ed34ae6254f5cc3 (patch)
tree2a27d09828adade94dd02a0c1542a1dd0b453a8c /libcxx/src
parent88c3e0eecffd42c6743638db51ad6db379996ff2 (diff)
downloadllvm-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.cpp2
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.
{