[PATCH] libstdc++: Add missing std::move in ranges::copy/move/reverse_copy [PR101599]

2021-07-23 Thread Patrick Palka via Gcc-patches
In passing, this also renames the template parameter _O2 to _Out2 in ranges::partition_copy and uglify its function parameters out_true and out_false. Tested on x86_64-pc-linux-gnu, does this look OK for trunk+branches? PR libstdc++/101599 libstdc++-v3/ChangeLog: * include/bits/

Re: [PATCH] libstdc++: Add missing std::move in ranges::copy/move/reverse_copy [PR101599]

2021-07-26 Thread Jonathan Wakely via Gcc-patches
On Fri, 23 Jul 2021 at 17:39, Patrick Palka via Libstdc++ wrote: > > In passing, this also renames the template parameter _O2 to _Out2 in > ranges::partition_copy and uglify its function parameters out_true > and out_false. > > Tested on x86_64-pc-linux-gnu, does this look OK for trunk+branches?