[libcxx-commits] [libcxx] [libc++][NFC] Make the exception implementation files self-contained (PR #164377)

Louis Dionne via libcxx-commits libcxx-commits at lists.llvm.org
Fri Oct 24 11:42:50 PDT 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();
----------------
ldionne wrote:

What is this `abi::` namespace? I can't find where it's defined.

https://github.com/llvm/llvm-project/pull/164377


More information about the libcxx-commits mailing list