[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:24:02 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:
I understand what you mean but it's... not always practical in very big repos. I'll look for another way.
Thanks.
https://github.com/llvm/llvm-project/pull/106719
More information about the libcxx-commits
mailing list