From: Patrick Palka Date: Thu, 5 Mar 2020 16:19:17 +0000 (-0500) Subject: libstdc++: Add missing friend declaration to join_view::_Sentinel X-Git-Tag: upstream/12.2.0~17965 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=6aa2ca21a442a775b7daf214b8c10fce8522ccda;p=platform%2Fupstream%2Fgcc.git libstdc++: Add missing friend declaration to join_view::_Sentinel The converting constructor of join_view::_Sentinel needs to be able to access the private members of join_view::_Sentinel. libstdc++-v3/ChangeLog: * include/std/ranges (join_view::_Sentinel<_Const>): Befriend join_view::_Sentinel. * testsuite/std/ranges/adaptors/join.cc: Augment test. --- diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index b2e995b..b3e8b9a 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,5 +1,9 @@ 2020-03-06 Patrick Palka + * include/std/ranges (join_view::_Sentinel<_Const>): Befriend + join_view::_Sentinel. + * testsuite/std/ranges/adaptors/join.cc: Augment test. + PR libstdc++/93978 * include/bits/range_access.h (__cust_access::_Empty::operator()): Declare return type to be bool instead of auto. diff --git a/libstdc++-v3/include/std/ranges b/libstdc++-v3/include/std/ranges index c71cf91..eb54b11 100644 --- a/libstdc++-v3/include/std/ranges +++ b/libstdc++-v3/include/std/ranges @@ -2592,6 +2592,8 @@ namespace views friend constexpr bool operator==(const _Iterator<_Const>& __x, const _Sentinel& __y) { return __y.__equal(__x); } + + friend _Sentinel; }; _Vp _M_base = _Vp(); diff --git a/libstdc++-v3/testsuite/std/ranges/adaptors/join.cc b/libstdc++-v3/testsuite/std/ranges/adaptors/join.cc index d3e652d..142c9fe 100644 --- a/libstdc++-v3/testsuite/std/ranges/adaptors/join.cc +++ b/libstdc++-v3/testsuite/std/ranges/adaptors/join.cc @@ -101,6 +101,28 @@ test05() VERIFY( i == v.end() ); } +void +test06() +{ + std::vector x = {""}; + auto i = std::counted_iterator(x.begin(), 1); + auto r = ranges::subrange{i, std::default_sentinel}; + auto v = r | views::transform(std::identity{}) | views::join; + + // Verify that _Iterator is implicitly convertible to _Iterator. + static_assert(!std::same_as); + auto a = ranges::cbegin(v); + a = ranges::begin(v); + + // Verify that _Sentinel is implicitly convertible to _Sentinel. + static_assert(!ranges::common_range); + static_assert(!std::same_as); + auto b = ranges::cend(v); + b = ranges::end(v); +} + int main() { @@ -109,4 +131,5 @@ main() test03(); test04(); test05(); + test06(); }