[libcxx-commits] [libcxx] [libc++] Add missing constructor for forward_list in C++11 (PR #204845)
A. Jiang via libcxx-commits
libcxx-commits at lists.llvm.org
Fri Jun 19 10:04:29 PDT 2026
================
@@ -21,7 +21,7 @@
template <class T, class Allocator>
void check_allocator(unsigned n, Allocator const& alloc = Allocator()) {
-#if TEST_STD_VER > 11
+#if TEST_STD_VER >= 11
----------------
frederick-vs-ja wrote:
Can we furtherly refactor this test file to test `check_allocator` in C++03 mode?
(Maybe `// XFAIL: FROZEN-CXX03-HEADERS-FIXME` lit comment will be necessary.)
https://github.com/llvm/llvm-project/pull/204845
More information about the libcxx-commits
mailing list