[libcxx-commits] [libcxx] [libc++] Fix ABI break introduced by switching to _LIBCPP_COMPRESSED_PAIR (PR #154686)
via libcxx-commits
libcxx-commits at lists.llvm.org
Sat Aug 23 01:47:02 PDT 2025
================
@@ -47,6 +47,10 @@ TEST_CONSTEXPR_CXX23 void test_basic() {
assert(p.get() == 0);
assert(p.get_deleter().state() == 0);
}
+// TODO: Remove this check once https://llvm.org/PR154567 is fixed
+#if TEST_STD_VER >= 23 && defined(TEST_COMPILER_CLANG)
+ if (!TEST_IS_CONSTANT_EVALUATED)
+#endif
----------------
h-vetinari wrote:
I meant that this deviates from the `// TODO(LLVM 23):` format elsewhere in this PR, and wasn't clear to me why, hence the question
https://github.com/llvm/llvm-project/pull/154686
More information about the libcxx-commits
mailing list