summaryrefslogtreecommitdiff
path: root/libstdc++-v3/src/ext-inst.cc
diff options
context:
space:
mode:
authorbkoz <bkoz@138bc75d-0d04-0410-961f-82ee72b054a4>2002-05-27 14:55:57 +0000
committerbkoz <bkoz@138bc75d-0d04-0410-961f-82ee72b054a4>2002-05-27 14:55:57 +0000
commit237ebf5948a0cc574bcc82d396b0751afd6810ac (patch)
tree3d9dcb8bef649404775fdf0e288307bd3742aaed /libstdc++-v3/src/ext-inst.cc
parent7effcd301e3f1da9b7da258f7bf731ea873cbf4e (diff)
downloadgcc-237ebf5948a0cc574bcc82d396b0751afd6810ac.tar.gz
c
2002-05-27 Benjamin Kosnik <bkoz@redhat.com> * src/misc-inst.cc: Define unnecessary algorithm instantiations. Break apart instantiations into groupings below. * src/fstream-inst.cc: New. * src/io-inst.cc: New. * src/istream-inst.cc: New. * src/ostream-inst.cc: New. * src/streambuf-inst.cc: New. * src/sstream-inst.cc: New. * src/Makefile.am (sources): Add files. * src/Makefile.in: Regenerate. * acinclude.m4: Work around automake 1.4-p5 bug, change AM_GNU_GETTEXT in comments to AM-GNU-GETTEXT. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@53930 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libstdc++-v3/src/ext-inst.cc')
-rw-r--r--libstdc++-v3/src/ext-inst.cc12
1 files changed, 10 insertions, 2 deletions
diff --git a/libstdc++-v3/src/ext-inst.cc b/libstdc++-v3/src/ext-inst.cc
index 21b98c8ee6a..93229f04007 100644
--- a/libstdc++-v3/src/ext-inst.cc
+++ b/libstdc++-v3/src/ext-inst.cc
@@ -1,6 +1,6 @@
// Explicit instantiation file.
-// Copyright (C) 2001 Free Software Foundation, Inc.
+// Copyright (C) 2001, 2002 Free Software Foundation, Inc.
//
// This file is part of the GNU ISO C++ Library. This library is free
// software; you can redistribute it and/or modify it under the
@@ -32,9 +32,17 @@
//
#include <ext/rope>
+#include <ext/stdio_filebuf.h>
namespace std
{
template
- const unsigned long __gnu_cxx::rope<char, std::allocator<char> >::_S_min_len;
+ const unsigned long
+ __gnu_cxx::rope<char, std::allocator<char> >::_S_min_len;
+
+ using __gnu_cxx::stdio_filebuf;
+ template class stdio_filebuf<char>;
+#ifdef _GLIBCPP_USE_WCHAR_T
+ template class stdio_filebuf<wchar_t>;
+#endif
} // namespace std