aboutsummaryrefslogtreecommitdiff
path: root/libstdc++-v3/src/ios.cc
diff options
context:
space:
mode:
authorDavid Edelsohn <dje@gcc.gnu.org>2003-09-08 21:08:48 -0400
committerDavid Edelsohn <dje@gcc.gnu.org>2003-09-08 21:08:48 -0400
commit263594d2e451ec829995dde3c6de3b1b3b6eb293 (patch)
tree74e503a9217ad7ea6d3afeb8e709d603aa07318d /libstdc++-v3/src/ios.cc
parentd853a20e6cf622329c8f005cc97be8813f935323 (diff)
downloadgcc-263594d2e451ec829995dde3c6de3b1b3b6eb293.zip
gcc-263594d2e451ec829995dde3c6de3b1b3b6eb293.tar.gz
gcc-263594d2e451ec829995dde3c6de3b1b3b6eb293.tar.bz2
ios.cc (ios_base::Init::Init): Remove unnecessary qualifier from _S_synced_with_stdio.
* src/ios.cc (ios_base::Init::Init): Remove unnecessary qualifier from _S_synced_with_stdio. From-SVN: r71224
Diffstat (limited to 'libstdc++-v3/src/ios.cc')
-rw-r--r--libstdc++-v3/src/ios.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/libstdc++-v3/src/ios.cc b/libstdc++-v3/src/ios.cc
index 9f7b4fd..9dd0ecb 100644
--- a/libstdc++-v3/src/ios.cc
+++ b/libstdc++-v3/src/ios.cc
@@ -167,7 +167,7 @@ namespace std
if (_S_ios_base_init == 0)
{
// Standard streams default to synced with "C" operations.
- ios_base::Init::_S_synced_with_stdio = true;
+ _S_synced_with_stdio = true;
new (&buf_cout_sync) stdio_sync_filebuf<char>(stdout);
new (&buf_cin_sync) stdio_sync_filebuf<char>(stdin);