aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Schwab <schwab@suse.de>2001-04-03 08:49:38 +0000
committerAndreas Schwab <schwab@gcc.gnu.org>2001-04-03 08:49:38 +0000
commit896b336b8c1c895e5f38d652680576c9132a87bc (patch)
treeb375496132ca74b513948c3a77530c5ce2e53e50
parentef14c25902d13222571483c41b3b949f775cf809 (diff)
downloadgcc-896b336b8c1c895e5f38d652680576c9132a87bc.zip
gcc-896b336b8c1c895e5f38d652680576c9132a87bc.tar.gz
gcc-896b336b8c1c895e5f38d652680576c9132a87bc.tar.bz2
* include/backward/fstream.h: Define filebuf and wfilebuf.
From-SVN: r41048
-rw-r--r--libstdc++-v3/ChangeLog4
-rw-r--r--libstdc++-v3/include/backward/fstream.h2
2 files changed, 6 insertions, 0 deletions
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog
index 4650659..2cc0b30 100644
--- a/libstdc++-v3/ChangeLog
+++ b/libstdc++-v3/ChangeLog
@@ -1,3 +1,7 @@
+2001-04-03 Andreas Schwab <schwab@suse.de>
+
+ * include/backward/fstream.h: Define filebuf and wfilebuf.
+
2001-04-02 Phil Edwards <pme@sources.redhat.com>
New concept checking implementation.
diff --git a/libstdc++-v3/include/backward/fstream.h b/libstdc++-v3/include/backward/fstream.h
index b98ee3c..be6eb43 100644
--- a/libstdc++-v3/include/backward/fstream.h
+++ b/libstdc++-v3/include/backward/fstream.h
@@ -30,11 +30,13 @@
#include <bits/std_fstream.h>
+using std::filebuf;
using std::ifstream;
using std::ofstream;
using std::fstream;
#ifdef _GLIBCPP_USE_WCHAR_T
+using std::wfilebuf;
using std::wifstream;
using std::wofstream;
using std::wfstream;