aboutsummaryrefslogtreecommitdiff
path: root/libstdc++-v3/include/bits/sstream.tcc
diff options
context:
space:
mode:
authorPhil Edwards <pme@gcc.gnu.org>2001-07-20 00:09:31 +0000
committerPhil Edwards <pme@gcc.gnu.org>2001-07-20 00:09:31 +0000
commit31bfa1777685abd42c74331ec279e3c5e7bb68ac (patch)
tree5ccb62458c8900c4c55b27e622ef80847920a23d /libstdc++-v3/include/bits/sstream.tcc
parent6dd12198d088c1e749b67c9e9a92352b2639265a (diff)
downloadgcc-31bfa1777685abd42c74331ec279e3c5e7bb68ac.zip
gcc-31bfa1777685abd42c74331ec279e3c5e7bb68ac.tar.gz
gcc-31bfa1777685abd42c74331ec279e3c5e7bb68ac.tar.bz2
backport: basic_string.h: Qualify symbols with 'template'.
2001-07-19 Phil Edwards <pme@sources.redhat.com> Mark Mitchell <mark@codesourcery.com> Merge from cp-parser-branch. * include/bits/basic_string.h: Qualify symbols with 'template'. * include/bits/basic_string.tcc: Likewise. * include/bits/fstream.tcc: Likewise. * include/bits/istream.tcc: Likewise. * include/bits/sstream.tcc: Likewise. * include/bits/std_istream.h: Likewise. * include/bits/stl_iterator.h: Likewise. * include/bits/streambuf.tcc: Likewise. * src/gen-num-limits.cc: Add 'template<>' to specializations. * src/locale.cc: Likewise. Co-Authored-By: Mark Mitchell <mark@codesourcery.com> From-SVN: r44167
Diffstat (limited to 'libstdc++-v3/include/bits/sstream.tcc')
-rw-r--r--libstdc++-v3/include/bits/sstream.tcc8
1 files changed, 4 insertions, 4 deletions
diff --git a/libstdc++-v3/include/bits/sstream.tcc b/libstdc++-v3/include/bits/sstream.tcc
index b2c5703..2a03ff0 100644
--- a/libstdc++-v3/include/bits/sstream.tcc
+++ b/libstdc++-v3/include/bits/sstream.tcc
@@ -40,7 +40,7 @@ namespace std
{
template <class _CharT, class _Traits, class _Alloc>
- basic_stringbuf<_CharT, _Traits, _Alloc>::int_type
+ typename basic_stringbuf<_CharT, _Traits, _Alloc>::int_type
basic_stringbuf<_CharT, _Traits, _Alloc>::
pbackfail(int_type __c)
{
@@ -74,7 +74,7 @@ namespace std
}
template <class _CharT, class _Traits, class _Alloc>
- basic_stringbuf<_CharT, _Traits, _Alloc>::int_type
+ typename basic_stringbuf<_CharT, _Traits, _Alloc>::int_type
basic_stringbuf<_CharT, _Traits, _Alloc>::
overflow(int_type __c)
{
@@ -114,7 +114,7 @@ namespace std
}
template <class _CharT, class _Traits, class _Alloc>
- basic_stringbuf<_CharT, _Traits, _Alloc>::pos_type
+ typename basic_stringbuf<_CharT, _Traits, _Alloc>::pos_type
basic_stringbuf<_CharT, _Traits, _Alloc>::
seekoff(off_type __off, ios_base::seekdir __way, ios_base::openmode __mode)
{
@@ -172,7 +172,7 @@ namespace std
}
template <class _CharT, class _Traits, class _Alloc>
- basic_stringbuf<_CharT, _Traits, _Alloc>::pos_type
+ typename basic_stringbuf<_CharT, _Traits, _Alloc>::pos_type
basic_stringbuf<_CharT, _Traits, _Alloc>::
seekpos(pos_type __sp, ios_base::openmode __mode)
{