aboutsummaryrefslogtreecommitdiff
path: root/libstdc++-v3
AgeCommit message (Collapse)AuthorFilesLines
2001-04-01tests_flags.in: Use test a = b, not test a == b which is not portable.Zack Weinberg2-1/+6
* tests_flags.in: Use test a = b, not test a == b which is not portable. From-SVN: r40986
2001-03-31[multiple changes]Benjamin Kosnik35-185/+131
2001-03-31 Benjamin Kosnik <bkoz@redhat.com> * configure.target: Remove duplicate aix entry. 2001-03-30 Benjamin Kosnik <bkoz@redhat.com> * include/ext/stl_bvector.h: Move to... * include/bits/stl_vector.h: ...here. * include/ext/bvector: Move to... * include/backward/bvector.h: ...here. * include/bits/std_vector.h: Change stl_bvector include. * include/bits/std_queue.h: Remove bvector include. * include/ext/tree: Insert using rb_tree, move to... * include/backward/tree.h: ...here. * include/backward/hash_map.h: Include ext/hash_map. * include/backward/hash_set.h: Include ext/hash_set. * include/backward/queue.h: New file. * include/backward/stack.h: Edit. * include/backward/algo.h: Same. * include/backward/algobase.h: Same. * include/backward/alloc.h: Same. * include/backward/function.h: Same. * include/backward/iomanip.h: Same. * include/backward/istream.h: Same. * include/backward/iterator.h: Same. * include/backward/list.h: Same. * include/backward/map.h: Same. * include/backward/multimap.h: Same. * include/backward/multiset.h: Same. * include/backward/ostream.h: Same. * include/backward/pair.h: Same * include/backward/rope.h: Same. * include/backward/set.h: Same. * include/backward/stream.h: Same. * include/backward/strstream.h: Same. * include/backward/tempbuf.h: Same. * src/Makefile.am (ext_headers): Edit. * src/Makefile.in: Regenerate. * testsuite/ext/headers.cc (main): Fix. * mkcheck.in: Fix. From-SVN: r40979
2001-03-30tests_flags.in (LIBS): Pass correct path for installed testing.Phil Edwards2-1/+5
2001-03-30 Phil Edwards <pme@sources.redhat.com> * tests_flags.in (LIBS): Pass correct path for installed testing. From-SVN: r40973
2001-03-30mkcheck.in (LIBTOOL): Don't construct -B argument here...Benjamin Kosnik1-0/+267
2001-03-28 Benjamin Kosnik <bkoz@redhat.com> * mkcheck.in (LIBTOOL): Don't construct -B argument here... * tests_flags.in (CXX): Construct here. (static_fail): Don't remove compile.out. Format with spaces. (INCLUDES): Deal with xcompiling. * configure.in (xcompiling): Substitute. * testsuite/Makefile.am: Snake libjava configury. * testsuite/Makefile.in: Regenerate. * testsuite/23_containers/map_operators.cc: Tweaks. * testsuite/23_containers/set_operators.cc: Tweaks. From-SVN: r40972
2001-03-30[multiple changes]Benjamin Kosnik17-133/+137
2001-03-28 Benjamin Kosnik <bkoz@redhat.com> * mkcheck.in (LIBTOOL): Don't construct -B argument here... * tests_flags.in (CXX): Construct here. (static_fail): Don't remove compile.out. Format with spaces. (INCLUDES): Deal with xcompiling. * configure.in (xcompiling): Substitute. * testsuite/Makefile.am: Snake libjava configury. * testsuite/Makefile.in: Regenerate. * testsuite/23_containers/map_operators.cc: Tweaks. * testsuite/23_containers/set_operators.cc: Tweaks. 2001-03-28 Gabriel Dos Reis <gdr@merlin.codesourcery.com> Enable dejagnu testing framework. * configure.in: Generate testsuite/Makefile. * configure: Regenerate. * Makefile.am (check-install): Change rule from this... (check-script-install): ...to this. (check): Change rule from this... (check-script):...to this. * Makefile.in: Regenerate. From-SVN: r40960
2001-03-28Makefile.am (CXXLINK): Add --tag disable-shared after --tag CXX.Alexandre Oliva3-25/+60
* libsupc++/Makefile.am (CXXLINK): Add --tag disable-shared after --tag CXX. (LIBTOOL): Let automake take care of its definition. * libsupc++/Makefile.in: Rebuilt. From-SVN: r40947
2001-03-28IA-64 ABI Exception Handling.Richard Henderson26-1543/+2520
From-SVN: r40924
2001-03-28Makefile.am (CXXLINK): Use CXX again, and choose CXX tag explicitly.Alexandre Oliva5-21/+36
* libsupc++/Makefile.am (CXXLINK): Use CXX again, and choose CXX tag explicitly. * src/Makefile.am (CXXLINK): Likewise. * libsupc++/Makefile.in, src/Makefile.in: Rebuilt. From-SVN: r40894
2001-03-27c++config (_STL_USE_CONCEPT_CHECKS): Disable by default.Benjamin Kosnik2-6/+7
2001-03-27 Benjamin Kosnik <bkoz@redhat.com> * include/bits/c++config (_STL_USE_CONCEPT_CHECKS): Disable by default. From-SVN: r40877
2001-03-27tests_flags.in: Change the order of libstdc++ and libcPeter Schmid2-31/+39
k 2001-03-26 Peter Schmid <schmid@snake.iap.physik.tu-darmstadt.de> * libstdc++-v3/tests_flags.in: Change the order of libstdc++ and libc From-SVN: r40876
2001-03-27basic_file.h (get_fileno): Remove.Benjamin Kosnik11-100/+85
2001-03-26 Benjamin Kosnik <bkoz@redhat.com> * include/bits/basic_file.h (get_fileno): Remove. (_M_fileno): Remove. (_M_cfile_created): Add. (basic_file::basic_file(__c_file_type*, openmode): Add. (basic_file::basic_file(int, const char*, openmode): Remove. * include/bits/fstream.tcc (basic_fstream::basic_filebuf(int __fd, const char*, ios_base::openmode): Don't allocate internal buffers. Turn off internal buffers. (basic_filebuf::overflow): Remove test for null buffer. (basic_filebuf::_M_really_overflow): Same. Allow unbuffered use. * include/bits/streambuf.cc: Tweak. * include/bits/std_ostream.h: Tweak. * config/basic_file_libio.h: Same. * config/basic_file_stdio.h: Same. * src/ios.cc (ios_base::Init::Init()): Unbuffer stdout by default. * testsuite/27_io/filebuf_members.cc: Tweaks. * testsuite/27_io/ios_base_members_static.cc: Tweaks. From-SVN: r40863
2001-03-25Makefile.am: New targets, doxygen and doxygen-maint.Phil Edwards6-2/+1621
2001-03-24 Phil Edwards <pme@sources.redhat.com> * Makefile.am: New targets, doxygen and doxygen-maint. * Makefile.in: Regenerated. * docs/doxygen/run_doxygen: Finally implemented. * docs/doxygen/maint.cfg.in: New file. * docs/doxygen/user.cfg.in: New file. From-SVN: r40823
2001-03-25acinclude.m4 (GLIBCPP_CHECK_COMPILER_FEATURES): Update comment.Phil Edwards10-928/+1148
2001-03-24 Phil Edwards <pme@sources.redhat.com> * acinclude.m4 (GLIBCPP_CHECK_COMPILER_FEATURES): Update comment. * src/Makefile.am: Replace leading spaces with tabs on continuation lines. * aclocal.m4: Regenerated. * configure: Ditto. * Makefile.in: Ditto. * src/Makefile.in: Ditto. * libio/Makefile.in: Ditto. * libmath/Makefile.in: Ditto. * libsupc++/Makefile.in: Ditto. From-SVN: r40822
2001-03-25howto.html: HTML fixup.Phil Edwards5-119/+203
2001-03-24 Phil Edwards <pme@sources.redhat.com> * docs/html/19_diagnostics/howto.html: HTML fixup. Describe concept-checking code and current status of same. * docs/html/ext/howto.html: Ditto. * docs/html/faq/index.html: Ditto. * docs/html/faq/index.txt: Regenerated. From-SVN: r40821
2001-03-24std_bitset.h: Include ostream and istream headers instead of iostream.Phil Edwards2-1/+7
2001-03-24 Phil Edwards <pme@sources.redhat.com> * include/bits/std_bitset.h: Include ostream and istream headers instead of iostream. From-SVN: r40820
2001-03-23ostream.tcc: Use __builtin_alloca.Greg Bumgardner2-1/+5
2001-03-22 Greg Bumgardner <bumgard@roguewave.com> * include/bits/ostream.tcc: Use __builtin_alloca. From-SVN: r40793
2001-03-23misc-inst.cc (__sink_unused_warning): Move to...Benjamin Kosnik5-27/+32
2001-03-22 Benjamin Kosnik <bkoz@redhat.com> * src/misc-inst.cc (__sink_unused_warning): Move to... * src/locale-inst.cc (__sink_unused_warning): Move to... * src/stl-inst.cc: Here. * include/bits/c++config (_STL_NO_CONCEPT_CHECKS): Add define, commented it out. From-SVN: r40792
2001-03-21basic_file.h: Fix typos in comments.Theodore Papadopoulo2-6/+10
2001-03-21 Theodore Papadopoulo <Theodore.Papadopoulo@sophia.inria.fr> * intclude/bits/basic_file.h: Fix typos in comments. From-SVN: r40705
2001-03-20Fix merge error.Richard Henderson1-1/+1
From-SVN: r40668
2001-03-20gen-num-limits.cc: Instantiate for wchar_t.Richard Henderson4-3/+10
* src/gen-num-limits.cc: Instantiate for wchar_t. * config/os/aix/bits/ctype_base.h (mask): Use unsigned int. From-SVN: r40666
2001-03-20vec.cc (__cxa_vec_cleanup): New fn.Jason Merrill3-10/+49
* libsupc++/vec.cc (__cxa_vec_cleanup): New fn. (__cxa_vec_ctor, __cxa_vec_cctor, __cxa_vec_dtor): Call it. * libsupc++/cxxabi.h: Declare it. From-SVN: r40657
2001-03-16gen-num-limits.cc (signal_adapter): Overloaded to match signal_func with an ↵Alexandre Oliva2-2/+15
unspecified argument list. * src/gen-num-limits.cc (signal_adapter): Overloaded to match signal_func with an unspecified argument list. From-SVN: r40546
2001-03-15tests_flags.in (CXXFLAGS): Link libstdc++ before libsupc++.Benjamin Kosnik2-3/+7
2001-03-15 Benjamin Kosnik <bkoz@redhat.com> * tests_flags.in (CXXFLAGS): Link libstdc++ before libsupc++. From-SVN: r40520
2001-03-15* include/bits/basic_string.tcc (operator+): Fix thinko.Gabriel Dos Reis2-1/+5
From-SVN: r40493
2001-03-14std_streambuf.h: Remove cached locale facets.Benjamin Kosnik7-59/+73
2001-03-14 Benjamin Kosnik <bkoz@redhat.com> libstdc++/2020 * include/bits/std_streambuf.h: Remove cached locale facets. (basic_streambuf::_M_buf_fctype): Remove. (basic_streambuf::~basic_streambuf): Remove here. (basic_streambuf::basic_streambuf): Same. (basic_streambuf::imbue): Same. * include/bits/fstream.tcc (filebuf::imbue): Remove _M_buf_fctype. * include/bits/std_fstream.h (basic_filebuf::_M_fcvt): Remove. (basic_filebuf::~basic_filebuf()): Remove here. * include/bits/fstream.tcc (basic_filebuf::basic_filebuf): Same. (basic_filebuf::imbue): Same. * include/bits/localefwd.h (_Count_ones): Remove. (locale::_S_num_categories): Just use 6, since this doesn't actually change, ever. * include/bits/locale_facets.tcc (has_facet): Simplify. (use_facet): Same. * testsuite/27_io/filebuf.cc (test06): Add tests. From-SVN: r40472
2001-03-13ctype_base.h: Make ctype masks match HP-UX ctype.h header file.Steve Ellcey2-11/+16
* libstdc++-v3/config/os/hpux/bits/ctype_base.h: Make ctype masks match HP-UX ctype.h header file. From-SVN: r40451
2001-03-13ctype_noninline.h: Fix typo and remove duplicate definitions of __dj_ctype_*Andris Pavenis2-6/+6
2001-03-13 Andris Pavenis <pavenis@latnet.lv> * config/djgpp/bits/ctype_noninline.h: Fix typo and remove duplicate definitions of __dj_ctype_* From-SVN: r40444
2001-03-13new: Remove pragma interface.Benjamin Kosnik7-15/+33
2001-03-13 Benjamin Kosnik <bkoz@redhat.com> * libsupc++/new: Remove pragma interface. * libsupc++/typeinfo: Same. * libsupc++/exception: Same. * libsupc++/new_handler.cc: Remove pragma implementation. (bad_alloc::~bad_alloc()): Add. * libsupc++/exception_support.cc: Same. (exception::~exception): Add. (bad_exception::~bad_exception): Add. * libsupc++/tinfo.cc: Same. (bad_cast::~bad_cast): Add. (bad_typeid::~bad_typeid): Add. From-SVN: r40442
2001-03-13mkcheck.in: Fix IFS regression for non-bash-2.01 hosts.Phil Edwards2-1/+9
2001-03-13 Phil Edwards <pme@sources.redhat.com> * mkcheck.in: Fix IFS regression for non-bash-2.01 hosts. From-SVN: r40441
2001-03-12mkcheck.in: workaround for bash 2.01 IFS bug.Felix Lee2-1/+6
2001-03-12 Felix Lee <flee@redhat.com> * mkcheck.in: workaround for bash 2.01 IFS bug. From-SVN: r40430
2001-03-12Fixups for -fno-for-scopeBenjamin Kosnik3-24/+27
2001-03-12 Benjamin Kosnik <bkoz@redhat.com> Fixups for -fno-for-scope * include/bits/locale_facets.tcc (__match_parallel): Fixup. * src/valarray-inst.cc (__gslice_to_index): Same. From-SVN: r40429
2001-03-12vector.h: Include std_vector.h.Benjamin Kosnik2-1/+3
2001-03-12 Benjamin Kosnik <bkoz@redhat.com> * include/backward/vector.h: Include std_vector.h. From-SVN: r40425
2001-03-12gen-num-limits.cc (traps): Add fflush prior to trapping signal (UnixWare 7 ↵Rodney Brown2-183/+200
workaround). 2001-03-12 Rodney Brown <RodneyBrown@mynd.com> * src/gen-num-limits.cc (traps) [SPECIALIZE_TRAPPING]: Add fflush prior to trapping signal (UnixWare 7 workaround). From-SVN: r40422
2001-03-12hashtable.h: Same.Craig Rodrigues3-2/+7
2001-03-12 Craig Rodrigues <rodrigc@mediaone.net> * include/backward/hashtable.h: Same. * include/backward/rope.h: Fix include. From-SVN: r40418
2001-03-12istream.tcc (basic_istream<_CharT, [...]): Fix typo.Benjamin Kosnik2-1/+7
2001-03-12 Benjamin Kosnik <bkoz@redhat.com> * include/bits/istream.tcc (basic_istream<_CharT, _Traits>& operator>>(basic_istream<_CharT, _Traits>& __in, _CharT* __s)): Fix typo. From-SVN: r40417
2001-03-12stl_hashtable.h: Change type of __n to size_tPeter Schmid3-2/+7
2001-03-11 Peter Schmid <schmid@snake.iap.physik.tu-darmstadt.de> * include/ext/stl_hashtable.h: Change type of __n to size_t * include/backward/bvector.h: Include <ext/stl_bvector.h> From-SVN: r40416
2001-03-10[multiple changes]Benjamin Kosnik3-3/+25
2001-03-09 Gabriel Dos Reis <gdr@merlin.codesourcery.com> * include/bits/istream.tcc ( basic_istream<_CharT, _Traits>& operator>>(basic_istream<_CharT, _Traits>& __in, _CharT* __s)): Use streamsize, not int_type. 2001-03-08 Benjamin Kosnik <bkoz@redhat.com> * testsuite/27_io/streambuf.cc (test06): New test, disabled at the moment. From-SVN: r40358
2001-03-08acinclude.m4 (GLIBCPP_EXPORT_INSTALL_INFO): Fix syntax in test command.Andreas Schwab4-3/+9
* acinclude.m4 (GLIBCPP_EXPORT_INSTALL_INFO): Fix syntax in test command. * aclocal.m4, configure: Regenerated. From-SVN: r40321
2001-03-07std_iosfwd.h: Remove string forward decls here.Benjamin Kosnik17-3102/+3096
2001-03-07 Benjamin Kosnik <bkoz@redhat.com> * include/bits/std_iosfwd.h: Remove string forward decls here. * include/bits/stringfwd.h: Add forward decls for char_traits specializations. * config/c_io_libio.h (wstreamoff): Delete. * config/c_io_stdio.h (wstreamoff): Same. * include/bits/char_traits.h: Use streamoff not wstreamoff for char_traits<wchar_t>::off_type. Remove duplicate typedefs. * include/bits/fpos.h: Define streampos/wstreampos here. * testsuite/27_io/istream_seeks.cc (test04): Explicitly cast int values to off_type. (test05): Same. Changeup output files. * testsuite/27_io/istream_unformatted.cc: Change output files. * testsuite/27_io/istream_seeks-1.txt: Add. * testsuite/27_io/istream_seeks-2.tst: Add. * testsuite/27_io/istream_seeks-1.tst: Add. * testsuite/27_io/istream_unformatted-2.tst: Delete. * testsuite/27_io/istream_unformatted-3.tst: Delete. * testsuite/27_io/istream_unformatted-3.txt: Delete. From-SVN: r40303
2001-03-07Add Irix 5.2, 6.3 support.Alexandre Oliva12-2/+324
2001-03-07 Alexandre Oliva <aoliva@redhat.com> Add Irix 5.2, 6.3 support. * config/os/irix/bits: Renamed too... * config/os/irix/irix6.5/bits: this. * config/os/irix/irix5.2/bits: New, copied from irix6.5/bits. * config/os/irix/irix5.2/bits/ctype_base.h: Use _U, _L, _N, _X, _S, _P, _C and _B instead of IRIX-6.5 _IS* macros. * config/os/irix/irix5.2/bits/ctype_noninline.h (ctype<char>::ctype): Initialize _M_table with __ctype. * configure.target: Adjust. From-SVN: r40294
2001-03-07istream.tcc (basic_istream<_CharT, [...]): Don't use sentry.Benjamin Kosnik4-52/+42
2001-03-06 Benjamin Kosnik <bkoz@redhat.com> libstdc++/2181 * include/bits/istream.tcc (basic_istream<_CharT, _Traits>:: operator>>(__istream_type& (*__pf)(__istream_type&)): Don't use sentry. (basic_istream<_CharT, _Traits>:: operator>>(__ios_type& (*__pf)(__ios_type&)): Same. (basic_istream<_CharT, _Traits>:: operator>>(ios_base& (*__pf)(ios_base&))): Same. * testsuite/27_io/istream_extractor_other.cc: Add tests. * testsuite/27_io/istream_manip.cc (test01): Fix. From-SVN: r40281
2001-03-06std_cerrno.h: Don't define errno in std::.Nathan Myers7-10/+224
2001-03-06 Nathan Myers <ncm@cantrip.org> Benjamin Kosnik <bkoz@redhat.com> * include/c_std/bits/std_cerrno.h: Don't define errno in std::. * testsuite/17_intro/header_cerrno.cc (test01): New file. * testsuite/17_intro/header_cassert.cc (test01): New file. * testsuite/17_intro/header_cstddef.cc (test01): New file. * testsuite/17_intro/header_csetjmp.cc (test01): New file. * testsuite/17_intro/header_cstdarg.cc (test01): New file. Co-Authored-By: Benjamin Kosnik <bkoz@redhat.com> From-SVN: r40270
2001-03-06std_cmath.h: Move abs(long), div(long,long) from here...Scott Snyder4-8/+27
2001-03-05 scott snyder <snyder@fnal.gov> libstdc++/2190 * include/c_std/bits/std_cmath.h: Move abs(long), div(long,long) from here... * include/c_std/bits/std_cstdlib.h: ... to here. * testsuite/17_intro/header_cstdlib.cc: Add test. From-SVN: r40254
2001-03-06vec.cc (__cxxa_vec_new2): Qualify size_t.Stephen M. Webb2-2/+6
2001-03-05 Stephen M. Webb <stephen.webb@cybersafe.com> * libsupc++/vec.cc (__cxxa_vec_new2): Qualify size_t. From-SVN: r40253
2001-03-05ctype_base.h (ctype_base): fix __to_type definition.Laurynas Biveinis4-27/+42
* config/os/djgpp/ctype_base.h (ctype_base): fix __to_type definition. Replace enum with static const variables. * config/os/djgpp/ctype_inline.h (ctype<char>::is): remove throw specification, fix typos, use <static_cast>. (ctype<char>::scan_is): remove throw specification. (ctype<char>::scan_not): likewise. * config/os/djgpp/ctype_noninline.h (ctype<char>::ctype): fix typo. (ctype<char>::do_toupper(char)): use <static_cast>. (ctype<char>::do_toupper(char *, const char *)): likewise. (ctype<char>::do_tolower(char)): likewise. (ctype<char>::do_tolower(char *, const char *)): likewise. From-SVN: r40243
2001-03-04algo.h: Use std not __STD.Phil Edwards102-4251/+1046
2001-03-04 Phil Edwards <pme@sources.redhat.com> http://gcc.gnu.org/ml/libstdc++/2001-03/msg00015.html * include/backward/algo.h: Use std not __STD. Remove unneeded macros and "never happens" code. Adjust to C++STYLE guidelines. * include/backward/algobase.h: Likewise. * include/backward/alloc.h: Likewise. * include/backward/bvector.h: Likewise. * include/backward/deque.h: Likewise. * include/backward/function.h: Likewise. * include/backward/hash_map.h: Likewise. * include/backward/hash_set.h: Likewise. * include/backward/hashtable.h: Likewise. * include/backward/heap.h: Likewise. * include/backward/iterator.h: Likewise. * include/backward/list.h: Likewise. * include/backward/map.h: Likewise. * include/backward/multimap.h: Likewise. * include/backward/multiset.h: Likewise. * include/backward/pair.h: Likewise. * include/backward/rope.h: Likewise. * include/backward/set.h: Likewise. * include/backward/slist.h: Likewise. * include/backward/stack.h: Likewise. * include/backward/strstream: Likewise. * include/backward/tempbuf.h: Likewise. * include/backward/tree.h: Likewise. * include/backward/vector.h: Likewise. * include/bits/basic_ios.h: Likewise. * include/bits/basic_ios.tcc: Likewise. * include/bits/basic_string.h: Likewise. * include/bits/c++config: Likewise. * include/bits/concept_checks.h: Likewise. * include/bits/fpos.h: Likewise. * include/bits/fstream.tcc: Likewise. * include/bits/functexcept.h: Likewise. * include/bits/ios_base.h: Likewise. * include/bits/istream.tcc: Likewise. * include/bits/mask_array.h: Likewise. * include/bits/ostream.tcc: Likewise. * include/bits/pthread_allocimpl.h: Likewise. * include/bits/sbuf_iter.h: Likewise. * include/bits/slice.h: Likewise. * include/bits/slice_array.h: Likewise. * include/bits/sstream.tcc: Likewise. * include/bits/std_bitset.h: Likewise. * include/bits/std_fstream.h: Likewise. * include/bits/std_iomanip.h: Likewise. * include/bits/std_ios.h: Likewise. * include/bits/std_istream.h: Likewise. * include/bits/std_iterator.h: Likewise. * include/bits/std_memory.h: Likewise. * include/bits/std_ostream.h: Likewise. * include/bits/std_sstream.h: Likewise. * include/bits/std_streambuf.h: Likewise. * include/bits/std_string.h: Likewise. * include/bits/std_valarray.h: Likewise. * include/bits/stl_algo.h: Likewise. * include/bits/stl_algobase.h: Likewise. * include/bits/stl_alloc.h: Likewise. * include/bits/stl_construct.h: Likewise. * include/bits/stl_deque.h: Likewise. * include/bits/stl_function.h: Likewise. * include/bits/stl_heap.h: Likewise. * include/bits/stl_iterator.h: Likewise. * include/bits/stl_iterator_base.h: Likewise. * include/bits/stl_list.h: Likewise. * include/bits/stl_map.h: Likewise. * include/bits/stl_multimap.h: Likewise. * include/bits/stl_multiset.h: Likewise. * include/bits/stl_numeric.h: Likewise. * include/bits/stl_pair.h: Likewise. * include/bits/stl_pthread_alloc.h: Likewise. * include/bits/stl_queue.h: Likewise. * include/bits/stl_raw_storage_iter.h: Likewise. * include/bits/stl_relops.h: Likewise. * include/bits/stl_set.h: Likewise. * include/bits/stl_stack.h: Likewise. * include/bits/stl_tempbuf.h: Likewise. * include/bits/stl_threads.h: Likewise. * include/bits/stl_tree.h: Likewise. * include/bits/stl_uninitialized.h: Likewise. * include/bits/stl_vector.h: Likewise. * include/bits/streambuf.tcc: Likewise. * include/bits/type_traits.h: Likewise. * include/bits/valarray_meta.h: Likewise. * include/ext/bvector: Likewise. * include/ext/hash_map: Likewise. * include/ext/hash_set: Likewise. * include/ext/ropeimpl.h: Likewise. * include/ext/slist: Likewise. * include/ext/stl_bvector.h: Likewise. * include/ext/stl_hash_fun.h: Likewise. * include/ext/stl_hashtable.h: Likewise. * include/ext/stl_rope.h: Likewise. * src/complex_io.cc: Likewise. * src/ios.cc: Likewise. * src/locale-inst.cc: Likewise. * src/locale.cc: Likewise. * src/localename.cc: Likewise. * src/misc-inst.cc: Likewise. * src/stdexcept.cc: Likewise. * src/stl-inst.cc: Likewise. * src/strstream.cc: Likewise. * src/valarray-inst.cc: Likewise. From-SVN: r40239
2001-03-03misc-inst.cc (__copy_streambufs): Fix typo for alpha.Benjamin Kosnik2-5/+7
2001-03-03 Benjamin Kosnik <bkoz@redhat.com> * src/misc-inst.cc (__copy_streambufs): Fix typo for alpha. From-SVN: r40208
2001-03-02[multiple changes]Benjamin Kosnik12-728/+685
2001-03-02 Peter Schmid <schmid@snake.iap.physik.tu-darmstadt.de> * include/bits/istream.tcc: change type of __extracted to __size_type 2001-03-02 Benjamin Kosnik <bkoz@redhat.com> * src/wstring-inst.cc: New file. * src/Makefile.am (EXTRA_LTLIBRARIES): Remove. (libinst_wstring_la_SOURCES): Remove. (libstdc___la_LIBADD): Remove libinst_wstring_la. (sources): Add wstring-inst.cc * acinclude.m4 (GLIBCPP_CHECK_WCHAR_T_SUPPORT): Remove libinst_wstring_la. From-SVN: r40192
2001-03-02locale.cc: initialise __ret with zeroPeter Schmid3-3/+8
2001-03-02 Peter Schmid <schmid@snake.iap.physik.tu-darmstadt.de> * src/locale.cc: initialise __ret with zero * src/strstream.cc:cast gptr to int_type From-SVN: r40188
2001-03-01index.html: Update broken links.Phil Edwards3-7/+12
2001-03-01 Phil Edwards <pme@sources.redhat.com> * docs/html/faq/index.html: Update broken links. * docs/html/faq/index.txt: Regenerated. From-SVN: r40165