File tree Expand file tree Collapse file tree 1 file changed +4
-8
lines changed Expand file tree Collapse file tree 1 file changed +4
-8
lines changed Original file line number Diff line number Diff line change 10410
10410
\effects
10411
10411
Equivalent to:
10412
10412
\begin {codeblock }
10413
- for (; ifirst != ilast && ofirst != olast; ++ofirst, (void)++ifirst) {
10413
+ for (; ifirst != ilast && ofirst != olast; ++ofirst, (void)++ifirst)
10414
10414
::new (@\placeholdernc {voidify}@(*ofirst)) remove_reference_t<iter_reference_t<O>>(*ifirst);
10415
- }
10416
10415
return {std::move(ifirst), ofirst};
10417
10416
\end {codeblock }
10418
10417
\end {itemdescr }
10433
10432
\effects
10434
10433
Equivalent to:
10435
10434
\begin {codeblock }
10436
- for ( ; n > 0; ++result, (void) ++first, --n) {
10435
+ for ( ; n > 0; ++result, (void) ++first, --n)
10437
10436
::new (@\placeholdernc {voidify}@(*result))
10438
10437
typename iterator_traits<NoThrowForwardIterator>::value_type(*first);
10439
- }
10440
10438
\end {codeblock }
10441
10439
10442
10440
\pnum
10519
10517
\effects
10520
10518
Equivalent to:
10521
10519
\begin {codeblock }
10522
- for (; ifirst != ilast && ofirst != olast; ++ofirst, (void)++ifirst) {
10520
+ for (; ifirst != ilast && ofirst != olast; ++ofirst, (void)++ifirst)
10523
10521
::new (@\placeholder {voidify}@(*ofirst))
10524
10522
remove_reference_t<iter_reference_t<O>>(ranges::iter_move(ifirst));
10525
- }
10526
10523
return {std::move(ifirst), ofirst};
10527
10524
\end {codeblock }
10528
10525
10624
10621
\effects
10625
10622
Equivalent to:
10626
10623
\begin {codeblock }
10627
- for (; first != last; ++first) {
10624
+ for (; first != last; ++first)
10628
10625
::new (@\placeholdernc {voidify}@(*first)) remove_reference_t<iter_reference_t<I>>(x);
10629
- }
10630
10626
return first;
10631
10627
\end {codeblock }
10632
10628
\end {itemdescr }
You can’t perform that action at this time.
0 commit comments