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

Danial Klimkin via libcxx-commits libcxx-commits at lists.llvm.org
Fri Aug 30 06:00:24 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
----------------
dklimkin wrote:

When it's set for the whole repo globally, and passed on the command line to the compiler.

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


More information about the libcxx-commits mailing list