Commit 0ccf1031 by Scott Snyder Committed by Benjamin Kosnik

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
parent f3b004d8
......@@ -151,6 +151,24 @@ namespace std {
//
// 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
//
template class basic_istringstream<char>;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment