Skip to content

Commit 4ed7fcf

Browse files
authored
[containers] Add std:: for forward/move (#5793)
1 parent 426ce8a commit 4ed7fcf

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

source/containers.tex

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9877,7 +9877,7 @@
98779877
\begin{itemdescr}
98789878
\pnum
98799879
\effects
9880-
Equivalent to: \tcode{return try_emplace(move(x)).first->second;}
9880+
Equivalent to: \tcode{return try_emplace(std::move(x)).first->second;}
98819881
\end{itemdescr}
98829882

98839883
\indexlibrarymember{at}{map}%
@@ -10015,7 +10015,7 @@
1001510015
\pnum
1001610016
\expects
1001710017
\tcode{value_type} is \oldconcept{EmplaceConstructible} into \tcode{map}
10018-
from \tcode{k}, \tcode{forward<M>(obj)}.
10018+
from \tcode{k}, \tcode{std::forward<M>(obj)}.
1001910019

1002010020
\pnum
1002110021
\effects
@@ -10055,7 +10055,7 @@
1005510055
\pnum
1005610056
\expects
1005710057
\tcode{value_type} is \oldconcept{EmplaceConstructible} into \tcode{map}
10058-
from \tcode{move(k)}, \tcode{forward<M>(obj)}.
10058+
from \tcode{std::move(k)}, \tcode{std::for\-ward<M>(obj)}.
1005910059

1006010060
\pnum
1006110061
\effects
@@ -11655,7 +11655,7 @@
1165511655
\begin{itemdescr}
1165611656
\pnum
1165711657
\effects
11658-
Equivalent to: \tcode{return try_emplace(move(k)).first->second;}
11658+
Equivalent to: \tcode{return try_emplace(std::move(k)).first->second;}
1165911659
\end{itemdescr}
1166011660

1166111661
\indexlibrarymember{unordered_map}{at}%

0 commit comments

Comments
 (0)