From: Andreas Schwab Date: Tue, 3 Apr 2001 08:49:38 +0000 (+0000) Subject: * include/backward/fstream.h: Define filebuf and wfilebuf. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=896b336b8c1c895e5f38d652680576c9132a87bc;p=gcc.git * include/backward/fstream.h: Define filebuf and wfilebuf. From-SVN: r41048 --- diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index 465065977b1..2cc0b307250 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,7 @@ +2001-04-03 Andreas Schwab + + * include/backward/fstream.h: Define filebuf and wfilebuf. + 2001-04-02 Phil Edwards New concept checking implementation. diff --git a/libstdc++-v3/include/backward/fstream.h b/libstdc++-v3/include/backward/fstream.h index b98ee3c4c40..be6eb43e12f 100644 --- a/libstdc++-v3/include/backward/fstream.h +++ b/libstdc++-v3/include/backward/fstream.h @@ -30,11 +30,13 @@ #include +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;