From a0e7d388874b75d3460bed887a4c960562b620e0 Mon Sep 17 00:00:00 2001 From: bkoz Date: Wed, 3 Apr 2002 02:32:52 +0000 Subject: 2002-04-02 Benjamin Kosnik libstdc++/5268 * src/ios.cc: (ios_base::Init::_S_ios_destroy): Remove flush calls. * testsuite/27_io/ios_init.cc (tests04): Add test. libstdc++/3983 * include/bits/basic_ios.h (basic_ios::_M_get_fctype_ios): Remove. (basic_ios::_M_ios_fctype): Consistently name to _M_fctype. * include/bits/basic_ios.tcc: Same. Remove outdated comments. * include/bits/istream.tcc: Use _M_fctype, make consistent with ostream. * testsuite/27_io/ios_init.cc (tests03): Add test. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@51777 138bc75d-0d04-0410-961f-82ee72b054a4 --- libstdc++-v3/src/ios.cc | 6 ------ 1 file changed, 6 deletions(-) (limited to 'libstdc++-v3/src/ios.cc') diff --git a/libstdc++-v3/src/ios.cc b/libstdc++-v3/src/ios.cc index d13ff0e73cf..0aab0a25a3a 100644 --- a/libstdc++-v3/src/ios.cc +++ b/libstdc++-v3/src/ios.cc @@ -190,16 +190,10 @@ namespace std // Explicitly call dtors to free any memory that is dynamically // allocated by filebuf ctor or member functions, but don't // deallocate all memory by calling operator delete. - cout.flush(); - cerr.flush(); - clog.flush(); buf_cout.~filebuf(); buf_cin.~filebuf(); buf_cerr.~filebuf(); #ifdef _GLIBCPP_USE_WCHAR_T - wcout.flush(); - wcerr.flush(); - wclog.flush(); buf_wcout.~wfilebuf(); buf_wcin.~wfilebuf(); buf_wcerr.~wfilebuf(); -- cgit v1.2.3