From: Steve Ellcey Date: Thu, 20 Jun 2002 19:20:41 +0000 (+0000) Subject: ext-inst.cc (_S_fetch): Add explicit templates for char and wchar types. X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=a9c418403eed79e78d2521ecbf7a5a5b7f035cd8;p=platform%2Fupstream%2Fgcc.git 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 --- diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index 1f1174d..f04ef50 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,8 @@ +2002-06-20 Steve Ellcey + * src/ext-inst.cc (_S_fetch): Add explicit templates for char and + wchar types. + (_S_min_len): Ditto. + 2002-06-20 Benjamin Kosnik * include/Makefile.am: Add rules. diff --git a/libstdc++-v3/src/ext-inst.cc b/libstdc++-v3/src/ext-inst.cc index 93229f0..b7af682 100644 --- a/libstdc++-v3/src/ext-inst.cc +++ b/libstdc++-v3/src/ext-inst.cc @@ -36,13 +36,32 @@ namespace std { + using __gnu_cxx::stdio_filebuf; + template const unsigned long __gnu_cxx::rope >::_S_min_len; - using __gnu_cxx::stdio_filebuf; + template + char + __gnu_cxx::rope >:: + _S_fetch(__gnu_cxx::_Rope_RopeRep >*, + unsigned long); + template class stdio_filebuf; + #ifdef _GLIBCPP_USE_WCHAR_T + template + const unsigned long + __gnu_cxx::rope >::_S_min_len; + + template + wchar_t + __gnu_cxx::rope >:: + _S_fetch(__gnu_cxx::_Rope_RopeRep >*, + unsigned long); + template class stdio_filebuf; #endif + } // namespace std