Skip to content

Commit de81239

Browse files
[flat.multiset.modifiers] Apply missed formatting
1 parent be83b7f commit de81239

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

source/containers.tex

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -18011,8 +18011,8 @@
1801118011
with \tcode{std::forward<Args>(args)...},
1801218012
then inserts \tcode{t} as if by:
1801318013
\begin{codeblock}
18014-
auto it = ranges::upper_bound(c, t, compare);
18015-
c.insert(it, std::move(t));
18014+
auto it = ranges::upper_bound(@\exposid{c}@, t, compare);
18015+
@\exposid{c}@.insert(it, std::move(t));
1801618016
\end{codeblock}
1801718017

1801818018
\pnum
@@ -18031,7 +18031,7 @@
1803118031
\effects
1803218032
Adds elements to \exposid{c} as if by:
1803318033
\begin{codeblock}
18034-
c.insert(c.end(), first, last);
18034+
@\exposid{c}@.insert(@\exposid{c}@.end(), first, last);
1803518035
\end{codeblock}
1803618036
Then, sorts the range of newly inserted elements with respect to \exposid{compare},
1803718037
and merges the resulting sorted range and
@@ -18073,8 +18073,8 @@
1807318073
\effects
1807418074
Equivalent to:
1807518075
\begin{codeblock}
18076-
ranges::swap(compare, y.compare);
18077-
ranges::swap(c, y.c);
18076+
ranges::swap(@\exposid{compare}@, y.@\exposid{compare}@);
18077+
ranges::swap(@\exposid{c}@, y.@\exposid{c}@);
1807818078
\end{codeblock}
1807918079
\end{itemdescr}
1808018080

@@ -18090,7 +18090,7 @@
1809018090

1809118091
\pnum
1809218092
\returns
18093-
\tcode{std::move(c)}.
18093+
\tcode{std::move(\exposid{c})}.
1809418094
\end{itemdescr}
1809518095

1809618096
\indexlibrarymember{replace}{flat_multiset}%
@@ -18105,7 +18105,7 @@
1810518105

1810618106
\pnum
1810718107
\effects
18108-
Equivalent to: \tcode{c = std::move(cont);}
18108+
Equivalent to: \tcode{\exposid{c} = std::move(cont);}
1810918109
\end{itemdescr}
1811018110

1811118111
\rSec3[flat.multiset.erasure]{Erasure}

0 commit comments

Comments
 (0)