Skip to content

Commit 89d4ea0

Browse files
frederick-vs-jazygoloid
authored andcommitted
[istream.syn,ostream.syn] update synopses according to LWG1203 (#4084)
Edits missed by commit ffb23d0.
1 parent ffe7c2c commit 89d4ea0

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

source/iostreams.tex

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4067,8 +4067,8 @@
40674067
template<class charT, class traits>
40684068
basic_istream<charT, traits>& ws(basic_istream<charT, traits>& is);
40694069

4070-
template<class charT, class traits, class T>
4071-
basic_istream<charT, traits>& operator>>(basic_istream<charT, traits>&& is, T&& x);
4070+
template<class Istream, class T>
4071+
Istream&& operator>>(Istream&& is, T&& x);
40724072
}
40734073
\end{codeblock}
40744074

@@ -4102,8 +4102,8 @@
41024102
template<class charT, class traits>
41034103
basic_ostream<charT, traits>& flush_emit(basic_ostream<charT, traits>& os);
41044104

4105-
template<class charT, class traits, class T>
4106-
basic_ostream<charT, traits>& operator<<(basic_ostream<charT, traits>&& os, const T& x);
4105+
template<class Ostream, class T>
4106+
Ostream&& operator<<(Ostream&& os, const T& x);
41074107
}
41084108
\end{codeblock}
41094109

0 commit comments

Comments
 (0)