[libcxx-commits] [libcxx] [libc++] Guard ..._REMOVED_UNCAUGHT_EXCEPTION behind ifndef (PR #106719)

Louis Dionne via libcxx-commits libcxx-commits at lists.llvm.org
Fri Aug 30 05:59:17 PDT 2024


================
@@ -6,7 +6,9 @@
 //
 //===----------------------------------------------------------------------===//
 
-#define _LIBCPP_ENABLE_CXX20_REMOVED_UNCAUGHT_EXCEPTION
+#ifndef _LIBCPP_ENABLE_CXX20_REMOVED_UNCAUGHT_EXCEPTION
+#  define _LIBCPP_ENABLE_CXX20_REMOVED_UNCAUGHT_EXCEPTION
+#endif
----------------
ldionne wrote:

How can this ever be defined when we compile `exception.cpp`?

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


More information about the libcxx-commits mailing list