Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 10 additions & 18 deletions source/algorithms.tex
Original file line number Diff line number Diff line change
Expand Up @@ -13726,8 +13726,7 @@
Equivalent to:
\begin{codeblock}
for (; first != last; ++first)
::new (@\placeholdernc{voidify}@(*first))
typename iterator_traits<NoThrowForwardIterator>::value_type;
::new (@\placeholdernc{voidify}@(*first)) iterator_traits<NoThrowForwardIterator>::value_type;
\end{codeblock}
\end{itemdescr}

Expand Down Expand Up @@ -13767,8 +13766,7 @@
Equivalent to:
\begin{codeblock}
for (; n > 0; (void)++first, --n)
::new (@\placeholdernc{voidify}@(*first))
typename iterator_traits<NoThrowForwardIterator>::value_type;
::new (@\placeholdernc{voidify}@(*first)) iterator_traits<NoThrowForwardIterator>::value_type;
return first;
\end{codeblock}
\end{itemdescr}
Expand Down Expand Up @@ -13807,8 +13805,7 @@
Equivalent to:
\begin{codeblock}
for (; first != last; ++first)
::new (@\placeholdernc{voidify}@(*first))
typename iterator_traits<NoThrowForwardIterator>::value_type();
::new (@\placeholdernc{voidify}@(*first)) iterator_traits<NoThrowForwardIterator>::value_type();
\end{codeblock}
\end{itemdescr}

Expand Down Expand Up @@ -13848,8 +13845,7 @@
Equivalent to:
\begin{codeblock}
for (; n > 0; (void)++first, --n)
::new (@\placeholdernc{voidify}@(*first))
typename iterator_traits<NoThrowForwardIterator>::value_type();
::new (@\placeholdernc{voidify}@(*first)) iterator_traits<NoThrowForwardIterator>::value_type();
return first;
\end{codeblock}
\end{itemdescr}
Expand Down Expand Up @@ -13892,8 +13888,7 @@
Equivalent to:
\begin{codeblock}
for (; first != last; ++result, (void)++first)
::new (@\placeholdernc{voidify}@(*result))
typename iterator_traits<NoThrowForwardIterator>::value_type(*first);
::new (@\placeholdernc{voidify}@(*result)) iterator_traits<NoThrowForwardIterator>::value_type(*first);
\end{codeblock}

\pnum
Expand Down Expand Up @@ -13948,8 +13943,7 @@
Equivalent to:
\begin{codeblock}
for (; n > 0; ++result, (void)++first, --n)
::new (@\placeholdernc{voidify}@(*result))
typename iterator_traits<NoThrowForwardIterator>::value_type(*first);
::new (@\placeholdernc{voidify}@(*result)) iterator_traits<NoThrowForwardIterator>::value_type(*first);
\end{codeblock}

\pnum
Expand Down Expand Up @@ -14003,7 +13997,7 @@
\begin{codeblock}
for (; first != last; (void)++result, ++first)
::new (@\placeholdernc{voidify}@(*result))
typename iterator_traits<NoThrowForwardIterator>::value_type(@\exposid{deref-move}@(first));
iterator_traits<NoThrowForwardIterator>::value_type(@\exposid{deref-move}@(first));
return result;
\end{codeblock}
\end{itemdescr}
Expand Down Expand Up @@ -14063,7 +14057,7 @@
\begin{codeblock}
for (; n > 0; ++result, (void)++first, --n)
::new (@\placeholdernc{voidify}@(*result))
typename iterator_traits<NoThrowForwardIterator>::value_type(@\exposid{deref-move}@(first));
iterator_traits<NoThrowForwardIterator>::value_type(@\exposid{deref-move}@(first));
return {first, result};
\end{codeblock}
\end{itemdescr}
Expand Down Expand Up @@ -14115,8 +14109,7 @@
Equivalent to:
\begin{codeblock}
for (; first != last; ++first)
::new (@\placeholdernc{voidify}@(*first))
typename iterator_traits<NoThrowForwardIterator>::value_type(x);
::new (@\placeholdernc{voidify}@(*first)) iterator_traits<NoThrowForwardIterator>::value_type(x);
\end{codeblock}
\end{itemdescr}

Expand Down Expand Up @@ -14156,8 +14149,7 @@
Equivalent to:
\begin{codeblock}
for (; n--; ++first)
::new (@\placeholdernc{voidify}@(*first))
typename iterator_traits<NoThrowForwardIterator>::value_type(x);
::new (@\placeholdernc{voidify}@(*first)) iterator_traits<NoThrowForwardIterator>::value_type(x);
return first;
\end{codeblock}
\end{itemdescr}
Expand Down