mirror of git://gcc.gnu.org/git/gcc.git
misc-inst.cc: Explicitly instantiate ifstream and ofstream classes.
2000-04-27 scott snyder <snyder@fnal.gov>
* src/misc-inst.cc: Explicitly instantiate ifstream and ofstream
classes.
From-SVN: r33502
This commit is contained in:
parent
f3b004d8d7
commit
0ccf103184
|
|
@ -150,6 +150,24 @@ namespace std {
|
|||
#endif
|
||||
|
||||
|
||||
//
|
||||
// ifstream
|
||||
//
|
||||
template class basic_ifstream<char>;
|
||||
#ifdef _GLIBCPP_USE_WCHAR_T
|
||||
template class basic_ifstream<wchar_t>;
|
||||
#endif
|
||||
|
||||
|
||||
//
|
||||
// ofstream
|
||||
//
|
||||
template class basic_ofstream<char>;
|
||||
#ifdef _GLIBCPP_USE_WCHAR_T
|
||||
template class basic_ofstream<wchar_t>;
|
||||
#endif
|
||||
|
||||
|
||||
//
|
||||
// istringstream
|
||||
//
|
||||
|
|
|
|||
Loading…
Reference in New Issue