2004-09-02 Benjamin Kosnik <bkoz@redhat.com>
Simon Richter <Simon.Richter@hogyros.de>
PR libstdc++/16715
* include/bits/istream.tcc: Add extern template for iostream
char and wchar_t instantiations.
Co-Authored-By: Simon Richter <Simon.Richter@hogyros.de>
From-SVN: r86980
+2004-09-02 Benjamin Kosnik <bkoz@redhat.com>
+ Simon Richter <Simon.Richter@hogyros.de>
+
+ PR libstdc++/16715
+ * include/bits/istream.tcc: Add extern template for iostream
+ char and wchar_t instantiations.
+
2004-09-02 Benjamin Kosnik <bkoz@redhat.com>
Leland Wang <llwang@infor.org>
extern template istream& operator>>(istream&, unsigned char*);
extern template istream& operator>>(istream&, signed char*);
+ extern template class basic_iostream<char>;
+
#ifdef _GLIBCXX_USE_WCHAR_T
extern template class basic_istream<wchar_t>;
extern template wistream& ws(wistream&);
extern template wistream& operator>>(wistream&, wchar_t&);
extern template wistream& operator>>(wistream&, wchar_t*);
+
+ extern template class basic_iostream<wchar_t>;
#endif
#endif
} // namespace std