This is the mail archive of the
libstdc++-cvs@sourceware.cygnus.com
mailing list for the libstdc++ project.
libstdc++/ /ChangeLog its/c++config.h.in its/i ...
- To: libstdc++-cvs at sourceware dot cygnus dot com
- Subject: libstdc++/ /ChangeLog its/c++config.h.in its/i ...
- From: bkoz at sourceware dot cygnus dot com
- Date: 6 Dec 1999 09:29:58 -0000
CVSROOT: /cvs/libstdc++
Module name: libstdc++
Changes by: bkoz@sourceware.cygnus.com 99/12/06 01:29:58
Modified files:
. : ChangeLog
bits : c++config.h.in istream.tcc locale_facets.tcc
ostream.tcc sstream.tcc std_fstream.h
std_istream.h std_ostream.h std_sstream.h
std_streambuf.h std_string.h
src : misc-inst.cc string-inst.cc
testsuite/27_io: ios_manip_basefield.cc
ostream_inserter_arith.cc
Log message:
1999-12-05 Benjamin Kosnik <bkoz@gnu.org>
* bits/locale_facets.tcc: Tweak.
(_S_format_long): Adjust showpos formatting for hex and oct.
* bits/std_ostream.h (operator<<(short)): Correctly deal with hex
and oct by formatting as unsigned.
(operator<<(int)): Same here.
* bits/ostream.tcc (operator<<(long)): Same.
(operator<<(long long)): Same.
(_S_pad_char): Actually treat ios_base::internal as something
worth doing correctly. Remove const designation on ios argument.
* testsuite/27_io/ios_manip_basefield.cc (test02): Add tests.
* testsuite/27_io/ostream_inserter_arith.cc (test03): Add tests.
1999-12-04 Benjamin Kosnik <bkoz@gnu.org>
* bits/std_sstream.h (streambuf::underflow): Check for mode == in.
1999-12-03 Benjamin Kosnik <bkoz@gnu.org>
* bits/locale_facets.tcc (num_put::do_put(bool): Fix.
* bits/sstream.tcc (streambuf::seekoff): Add parens.
* bits/istream.tcc (istream::get(sb)): Handle exceptional events.
(operator>>(istream, _CharT*)): Change streamsize to int_type.
(operator>>(istream, _CharT&)): Fix typedef'd type to be _CharT.
* bits/ostream.tcc (ostream::operator<<(const char*)): Stub out
unused argument.
(ostream::operator<<(_CharT)): Fix.
* bits/std_sstream.h: Temporarily disable including sstream.tcc to
see if this will increase compile speed.
* bits/std_ostream.h: Likewise. . .
* bits/std_istream.h: And here.
* bits/std_fstream.h: And here.
* src/misc-inst.cc: Add relevant header file includes for
instantiation purposes.
* src/string-inst.cc: And here.
* testsuite/27_io/ostream_inserter_arith.cc: Add