summaryrefslogtreecommitdiff
path: root/libstdc++-v3/bits/ostream.tcc
diff options
context:
space:
mode:
authorBenjamin Kosnik <bkoz@purist.soma.redhat.com>2000-06-30 00:38:09 +0000
committerBenjamin Kosnik <bkoz@gcc.gnu.org>2000-06-30 00:38:09 +0000
commit4a2f4b128f298dcd45d4985e67289b82e9efd2e5 (patch)
treea7427e5ee89eafaa12d67281487880451cc233b1 /libstdc++-v3/bits/ostream.tcc
parentab76ca54bb48c62ce6d9faf6097344692baf0519 (diff)
downloadgcc-4a2f4b128f298dcd45d4985e67289b82e9efd2e5.tar.gz
ostream_manip.cc (test02): Add tests.
2000-06-29 Benjamin Kosnik <bkoz@purist.soma.redhat.com> * testsuite/27_io/ostream_manip.cc (test02): Add tests. * bits/ostream.tcc: Tweak. * bits/std_fstream.h (basic_filebuf::setbuf): Reset _M_buf_size_opt too. * bits/std_streambuf.h (basic_streambuf::~basic_streambuf): Zero out _M_buf_size_opt. * bits/std_sstream.h (basic_stringbuf::_M_init_stringbuf): Zero _M_buf_size_opt out here. * bits/char_traits.h (char_traits::eos): Non standard member function, uglify to __eos. Return char_type(). * bits/std_ostream.h: Change. From-SVN: r34797
Diffstat (limited to 'libstdc++-v3/bits/ostream.tcc')
-rw-r--r--libstdc++-v3/bits/ostream.tcc2
1 files changed, 1 insertions, 1 deletions
diff --git a/libstdc++-v3/bits/ostream.tcc b/libstdc++-v3/bits/ostream.tcc
index ca6813b97c3..ce683ef51ad 100644
--- a/libstdc++-v3/bits/ostream.tcc
+++ b/libstdc++-v3/bits/ostream.tcc
@@ -40,7 +40,7 @@ namespace std {
{
// XXX MT
if (_M_ok && __os.tie())
- __os.tie()->flush();
+ __os.tie()->flush();
}
template<typename _CharT, typename _Traits>