Commit a9c41840 by Steve Ellcey Committed by Steve Ellcey

ext-inst.cc (_S_fetch): Add explicit templates for char and wchar types.

	* src/ext-inst.cc (_S_fetch): Add explicit templates for char and
	wchar types.
	(_S_min_len): Ditto.

From-SVN: r54850
parent e01c9849
2002-06-20 Steve Ellcey <sje@cup.hp.com>
* src/ext-inst.cc (_S_fetch): Add explicit templates for char and
wchar types.
(_S_min_len): Ditto.
2002-06-20 Benjamin Kosnik <bkoz@redhat.com> 2002-06-20 Benjamin Kosnik <bkoz@redhat.com>
* include/Makefile.am: Add rules. * include/Makefile.am: Add rules.
......
...@@ -36,13 +36,32 @@ ...@@ -36,13 +36,32 @@
namespace std namespace std
{ {
using __gnu_cxx::stdio_filebuf;
template template
const unsigned long const unsigned long
__gnu_cxx::rope<char, std::allocator<char> >::_S_min_len; __gnu_cxx::rope<char, std::allocator<char> >::_S_min_len;
using __gnu_cxx::stdio_filebuf; template
char
__gnu_cxx::rope<char, std::allocator<char> >::
_S_fetch(__gnu_cxx::_Rope_RopeRep<char, std::allocator<char> >*,
unsigned long);
template class stdio_filebuf<char>; template class stdio_filebuf<char>;
#ifdef _GLIBCPP_USE_WCHAR_T #ifdef _GLIBCPP_USE_WCHAR_T
template
const unsigned long
__gnu_cxx::rope<wchar_t, std::allocator<wchar_t> >::_S_min_len;
template
wchar_t
__gnu_cxx::rope<wchar_t, std::allocator<wchar_t> >::
_S_fetch(__gnu_cxx::_Rope_RopeRep<wchar_t, std::allocator<wchar_t> >*,
unsigned long);
template class stdio_filebuf<wchar_t>; template class stdio_filebuf<wchar_t>;
#endif #endif
} // namespace std } // namespace std
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