summaryrefslogtreecommitdiffstats
path: root/libstdc++-v3/include/bits/basic_ios.h
diff options
context:
space:
mode:
authorbkoz <bkoz@138bc75d-0d04-0410-961f-82ee72b054a4>2002-04-03 02:32:52 +0000
committerbkoz <bkoz@138bc75d-0d04-0410-961f-82ee72b054a4>2002-04-03 02:32:52 +0000
commita0e7d388874b75d3460bed887a4c960562b620e0 (patch)
tree6251cfb06881554892dd18eece7ba47087929eaa /libstdc++-v3/include/bits/basic_ios.h
parentd46792c2862f9f1efad65f3aa20abfef6df708cb (diff)
downloadppe42-gcc-a0e7d388874b75d3460bed887a4c960562b620e0.tar.gz
ppe42-gcc-a0e7d388874b75d3460bed887a4c960562b620e0.zip
2002-04-02 Benjamin Kosnik <bkoz@redhat.com>
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
Diffstat (limited to 'libstdc++-v3/include/bits/basic_ios.h')
-rw-r--r--libstdc++-v3/include/bits/basic_ios.h6
1 files changed, 1 insertions, 5 deletions
diff --git a/libstdc++-v3/include/bits/basic_ios.h b/libstdc++-v3/include/bits/basic_ios.h
index cc8617f986f..13ad0f82e99 100644
--- a/libstdc++-v3/include/bits/basic_ios.h
+++ b/libstdc++-v3/include/bits/basic_ios.h
@@ -69,17 +69,13 @@ namespace std
basic_streambuf<_CharT, _Traits>* _M_streambuf;
// Cached use_facet<ctype>, which is based on the current locale info.
- const __ctype_type* _M_ios_fctype;
+ const __ctype_type* _M_fctype;
// From ostream.
const __numput_type* _M_fnumput;
// From istream.
const __numget_type* _M_fnumget;
public:
- const __ctype_type*
- _M_get_fctype_ios(void)
- { return _M_ios_fctype; }
-
operator void*() const
{ return this->fail() ? 0 : const_cast<basic_ios*>(this); }
OpenPOWER on IntegriCloud