hack around strange istream problem (as the comment says, it doesn't belong in this file, but whatever).

This commit is contained in:
Steve Checkoway
2004-05-16 09:33:58 +00:00
parent a38649bf50
commit 163edbe314
+6
View File
@@ -76,6 +76,12 @@ wchar_t *wmemset(wchar_t *ws , wchar_t wc, size_t n)
#ifndef wstring
template class std::basic_string<wchar_t, std::char_traits<wchar_t>, std::allocator<wchar_t> >;
#endif
/* This has nothing to do with this file, but I might as well put it here
* rather than make a new file just for it.
*/
#include <iostream>
template std::basic_istream<char, std::char_traits<char> >&
std::basic_istream<char, std::char_traits<char> >::seekg(std::fpos<__mbstate_t>);
#endif