Re: [PATCH 2/1] libstdc++: Add missing friend declaration to join_view::_Sentinel

2020-03-05 Thread Patrick Palka
On Thu, 5 Mar 2020, Jonathan Wakely wrote: > On 05/03/20 11:24 -0500, Patrick Palka wrote: > > 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_vie

Re: [PATCH 2/1] libstdc++: Add missing friend declaration to join_view::_Sentinel

2020-03-05 Thread Jonathan Wakely
On 05/03/20 11:24 -0500, Patrick Palka wrote: 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.

[PATCH 2/1] libstdc++: Add missing friend declaration to join_view::_Sentinel

2020-03-05 Thread Patrick Palka
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: A