mirror of
https://gcc.gnu.org/git/gcc.git
synced 2024-11-30 07:14:09 +08:00
ostream.tcc (sentry::sentry): Improve performance-wise the fix for libstdc++/9563.
2003-02-13 Paolo Carlini <pcarlini@unitus.it> * include/bits/ostream.tcc (sentry::sentry): Improve performance-wise the fix for libstdc++/9563. From-SVN: r62855
This commit is contained in:
parent
047d636f54
commit
b7bb6d4a6a
@ -1,3 +1,8 @@
|
||||
2003-02-13 Paolo Carlini <pcarlini@unitus.it>
|
||||
|
||||
* include/bits/ostream.tcc (sentry::sentry): Improve
|
||||
performance-wise the fix for libstdc++/9563.
|
||||
|
||||
2003-02-12 Phil Edwards <pme@gcc.gnu.org>
|
||||
|
||||
* config/cpu/generic/atomicity.h (_Atomic_add_mutex): Fix declaration.
|
||||
|
@ -44,7 +44,7 @@ namespace std
|
||||
: _M_os(__os)
|
||||
{
|
||||
// XXX MT
|
||||
if (__os.good() && __os.tie())
|
||||
if (__os.tie() && __os.good())
|
||||
__os.tie()->flush();
|
||||
|
||||
if (__os.good())
|
||||
|
Loading…
Reference in New Issue
Block a user