Skip to content

Commit

Permalink
[ranges] Add missing @s in code blocks
Browse files Browse the repository at this point in the history
  • Loading branch information
opensdh authored and zygoloid committed Mar 4, 2020
1 parent 84e2ff6 commit c0a2697
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions source/ranges.tex
Original file line number Diff line number Diff line change
Expand Up @@ -4101,7 +4101,7 @@
\indexlibrarymember{iter_swap}{transform_view::iterator}%
\begin{itemdecl}
friend constexpr void iter_swap(const @\exposid{iterator}@& x, const @\exposid{iterator}@& y)
noexcept(noexcept(ranges::iter_swap(x.\exposid{current_}, y.\exposid{current_})))
noexcept(noexcept(ranges::iter_swap(x.@\exposid{current_}@, y.@\exposid{current_}@)))
requires indirectly_swappable<iterator_t<@\exposid{Base}@>>;
\end{itemdecl}

Expand Down Expand Up @@ -5738,7 +5738,7 @@
}

friend constexpr void iter_swap(const @\exposid{inner-iterator}@& x, const @\exposid{inner-iterator}@& y)
noexcept(noexcept(ranges::iter_swap(x.@\exposid{i_}@.@\placeholdernc{current}, y.@\exposid{i_}@.\placeholdernc{current}@)))
noexcept(noexcept(ranges::iter_swap(x.@\exposid{i_}@.@\placeholdernc{current}@, y.@\exposid{i_}@.@\placeholdernc{current}@)))
requires indirectly_swappable<iterator_t<@\exposid{Base}@>>;
};
}
Expand Down

0 comments on commit c0a2697

Please sign in to comment.