+2019-06-11 Edward Smith-Rowland <3dw4rd@verizon.net>
+
+ Fix ConstexprIterator requirements tests - No constexpr algorithms!
+ * testsuite/21_strings/basic_string_view/requirements/constexpr_iter.cc:
+ Replace copy with hand-rolled loop.
+ * testsuite/23_containers/array/requirements/constexpr_iter.cc:
+ Ditto.
+
+2019-06-09 Edward Smith-Rowland <3dw4rd@verizon.net>
+
+ Test for C++20 p0858 - ConstexprIterator requirements.
+ * testsuite/21_strings/basic_string_view/requirements/constexpr_iter.cc:
+ New test.
+ * testsuite/23_containers/array/requirements/constexpr_iter.cc:
+ New test.
+
2019-06-05 Jakub Jelinek <jakub@redhat.com>
Backported from mainline
auto ch = hw[4];
static_assert('W' == *(hw.cbegin() + 7));
+ std::array<int, hw.size()> a2{{0,0,0,0,0,0,0,0,0,0,0,0,0}};
+ auto hwi = hw.begin();
+ auto hwe = hw.end();
+ auto a2i = a2.begin();
+ while (hwi != hwe)
+ *a2i++ = *hwi++;
+
return *(hw.cbegin() + 3);
}