[libcxx-commits] [libcxx] [libc++][NFC] Make the exception implementation files self-contained (PR #164377)
Nikolas Klauser via libcxx-commits
libcxx-commits at lists.llvm.org
Tue Nov 11 02:09:06 PST 2025
================
@@ -17,9 +21,9 @@ bool uncaught_exception() noexcept { return uncaught_exceptions() > 0; }
int uncaught_exceptions() noexcept {
#if _LIBCPPABI_VERSION > 1001
- return __cxa_uncaught_exceptions();
+ return abi::__cxa_uncaught_exceptions();
----------------
philnik777 wrote:
#167485
https://github.com/llvm/llvm-project/pull/164377
More information about the libcxx-commits
mailing list