File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 11127
11127
\effects
11128
11128
Equivalent to:
11129
11129
\begin {codeblock }
11130
- auto t = uninitialized_copy(counted_iterator(ifirst, n),
11130
+ auto t = uninitialized_copy(counted_iterator(std::move( ifirst) , n),
11131
11131
default_sentinel, ofirst, olast);
11132
11132
return {std::move(t.in).base(), t.out};
11133
11133
\end {codeblock }
11237
11237
\effects
11238
11238
Equivalent to:
11239
11239
\begin {codeblock }
11240
- auto t = uninitialized_move(counted_iterator(ifirst, n),
11240
+ auto t = uninitialized_move(counted_iterator(std::move( ifirst) , n),
11241
11241
default_sentinel, ofirst, olast);
11242
11242
return {std::move(t.in).base(), t.out};
11243
11243
\end {codeblock }
11448
11448
\effects
11449
11449
Equivalent to:
11450
11450
\begin {codeblock }
11451
- return destroy(counted_iterator(first, n), default_sentinel).base();
11451
+ return destroy(counted_iterator(std::move( first) , n), default_sentinel).base();
11452
11452
\end {codeblock }
11453
11453
\end {itemdescr }
11454
11454
You can’t perform that action at this time.
0 commit comments