diff --git a/source/iostreams.tex b/source/iostreams.tex index 8fdf1ea6db..3893f21181 100644 --- a/source/iostreams.tex +++ b/source/iostreams.tex @@ -4052,8 +4052,8 @@ template basic_istream& ws(basic_istream& is); - template - basic_istream& operator>>(basic_istream&& is, T&& x); + template + Istream&& operator>>(Istream&& is, T&& x); } \end{codeblock} @@ -4087,8 +4087,8 @@ template basic_ostream& flush_emit(basic_ostream& os); - template - basic_ostream& operator<<(basic_ostream&& os, const T& x); + template + Ostream&& operator<<(Ostream&& os, const T& x); } \end{codeblock}