mirror of
https://gcc.gnu.org/git/gcc.git
synced 2024-11-30 07:14:09 +08:00
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
This commit is contained in:
parent
d853a20e6c
commit
263594d2e4
@ -1,4 +1,9 @@
|
||||
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);
|
||||
|
Loading…
Reference in New Issue
Block a user