Commit 263594d2 by David Edelsohn

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
parent d853a20e
2003-08-09 Bernardo Innocenti <bernie@develer.com>
2003-09-09 David Edelsohn <edelsohn@gnu.org>
* src/ios.cc (ios_base::Init::Init): Remove unnecessary
qualifier from _S_synced_with_stdio.
2003-09-09 Bernardo Innocenti <bernie@develer.com>
* include/c_std/std_cstdlib.h: Avoid using missing C library symbols.
......
......@@ -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);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment