File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 8426
8426
for (; ifirst != ilast && ofirst != olast; ++ofirst, (void)++ifirst) {
8427
8427
::new (@\placeholdernc{voidify}@(*ofirst)) remove_reference_t<iter_reference_t<O>>(*ifirst);
8428
8428
}
8429
- return {ifirst, ofirst};
8429
+ return {std::move( ifirst) , ofirst};
8430
8430
\end{codeblock}
8431
8431
\end{itemdescr}
8432
8432
8478
8478
\begin{codeblock}
8479
8479
auto t = uninitialized_copy(counted_iterator(ifirst, n),
8480
8480
default_sentinel, ofirst, olast);
8481
- return {t.in.base(), t.out};
8481
+ return {std::move( t.in) .base(), t.out};
8482
8482
\end{codeblock}
8483
8483
\end{itemdescr}
8484
8484
8535
8535
::new (@\placeholder{voidify}@(*ofirst))
8536
8536
remove_reference_t<iter_reference_t<O>>(ranges::iter_move(ifirst));
8537
8537
}
8538
- return {ifirst, ofirst};
8538
+ return {std::move( ifirst) , ofirst};
8539
8539
\end{codeblock}
8540
8540
8541
8541
\pnum
8590
8590
\begin{codeblock}
8591
8591
auto t = uninitialized_move(counted_iterator(ifirst, n),
8592
8592
default_sentinel, ofirst, olast);
8593
- return {t.in.base(), t.out};
8593
+ return {std::move( t.in) .base(), t.out};
8594
8594
\end{codeblock}
8595
8595
8596
8596
\pnum
You can’t perform that action at this time.
0 commit comments