diff options
author | bkoz <bkoz@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-01-10 17:24:11 +0000 |
---|---|---|
committer | bkoz <bkoz@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-01-10 17:24:11 +0000 |
commit | 6a5bff679fa0542b9114e9e0868c63d7e1fd94ec (patch) | |
tree | 107deb0232beda084443cf0e1e84b32fabb0d4e7 /libstdc++-v3/include/bits/ios_base.h | |
parent | b6250dbca7accdcd4850fc4b42a551f5ffee95f5 (diff) | |
download | ppe42-gcc-6a5bff679fa0542b9114e9e0868c63d7e1fd94ec.tar.gz ppe42-gcc-6a5bff679fa0542b9114e9e0868c63d7e1fd94ec.zip |
2001-01-09 Benjamin Kosnik <bkoz@redhat.com>
<kainz@ilm.com>
Fixes for libstdc++/1576
* src/stdstreams.cc: Initialize with NULL filebuf. Delete
file, move contents into....
* src/ios.cc: ...Here. Put defines for iostreams objects and
initialization routines into one file to simplify DSO interaction.
* include/bits/std_iostream.h: Touch.
* include/bits/ios_base.h (_S_synched_with_stdio): Make static.
* src/Makefile.am (sources): Remove stdstreams.cc.
* src/Makefile.in: Regenerate.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@38871 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libstdc++-v3/include/bits/ios_base.h')
-rw-r--r-- | libstdc++-v3/include/bits/ios_base.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libstdc++-v3/include/bits/ios_base.h b/libstdc++-v3/include/bits/ios_base.h index c5de5b8185c..6aea0429d7c 100644 --- a/libstdc++-v3/include/bits/ios_base.h +++ b/libstdc++-v3/include/bits/ios_base.h @@ -294,7 +294,7 @@ namespace std { ~Init(); private: static int _S_ios_base_init; - bool _M_synced_with_stdio; + static bool _S_synced_with_stdio; filebuf* _M_cout; filebuf* _M_cin; filebuf* _M_cerr; |