We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3193936 commit e93ea65Copy full SHA for e93ea65
libcxx/include/__tree
@@ -628,7 +628,8 @@ public:
628
// 2. AppleClang is not yet using clang >= 20.x, which has "fixed" this issue
629
// 3. A few others like FreeBSD/amd64, AArch64, AIX
630
// FIXME: when AppleClang is based off of clang >= 20.x
631
-#if defined(_LIBCPP_CLANG_VER) && _LIBCPP_CLANG_VER < 2000
+#if (defined(_LIBCPP_CLANG_VER) && _LIBCPP_CLANG_VER < 2000) || \
632
+ (defined(_LIBCPP_APPLE_CLANG_VER) && _LIBCPP_APPLE_CLANG_VER < 2000)
633
_LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX26 ~__tree_node() {}
634
#else
635
~__tree_node() = delete;
0 commit comments