Re: [PATCH] libstdc++: Fix LWG issues 3389 and 3390

2020-02-11 Thread Jonathan Wakely
On 11/02/20 11:05 -0500, Patrick Palka wrote: On Tue, 11 Feb 2020, Patrick Palka wrote: libstdc++-v3/ChangeLog: DR 3389 and DR 3390 * include/bits/stl_iterator.h (move_move_iterator): Use std::move when constructing the move_iterator with __i. (counted_iterator:

Re: [PATCH] libstdc++: Fix LWG issues 3389 and 3390

2020-02-11 Thread Patrick Palka
stead of sometimes using DR XXXX. -- >8 -- Subject: [PATCH] libstdc++: Fix LWG issues 3389 and 3390 libstdc++-v3/ChangeLog: LWG 3389 and LWG 3390 * include/bits/stl_iterator.h (move_move_iterator): Use std::move when constructing the move_iterator with __i. (count

[PATCH] libstdc++: Fix LWG issues 3389 and 3390

2020-02-11 Thread Patrick Palka
libstdc++-v3/ChangeLog: DR 3389 and DR 3390 * include/bits/stl_iterator.h (move_move_iterator): Use std::move when constructing the move_iterator with __i. (counted_iterator::counted_iterator): Use std::move when initializing M_current with __i. * te