[libcxx-commits] [libcxx] [libc++] Enable missing allocator constructors in C++11 (PR #204845)
A. Jiang via libcxx-commits
libcxx-commits at lists.llvm.org
Mon Jun 29 23:08:53 PDT 2026
================
@@ -46,14 +41,24 @@ int main(int, char**) {
unsigned n = 0;
for (C::const_iterator i = c.begin(), e = c.end(); i != e; ++i, ++n) {
-#if TEST_STD_VER >= 11
assert(*i == T());
-#else
- ((void)0);
-#endif
}
assert(n == N);
}
+ {
----------------
frederick-vs-ja wrote:
@ldionne @halbi2 I think we should still add `// XFAIL: FROZEN-CXX03-HEADERS-FIXME` to this file to make CI green.
https://github.com/llvm/llvm-project/pull/204845
More information about the libcxx-commits
mailing list