X-Git-Url: http://git.sourceforge.jp/view?p=pf3gnuchains%2Fgcc-fork.git;a=blobdiff_plain;f=libstdc%2B%2B-v3%2FChangeLog;h=6158511a8064354462550f634740c2716a5f45da;hp=9063603c0a29c997241a156c84aefee7b477be46;hb=6b5eba3069bfaf87535fcf2d75a566fc4d038ff3;hpb=8282055f47d84148dd45c3c3d0ca22be0291b1a3 diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index 9063603c0a2..6158511a806 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,259 @@ +2004-11-19 Jonathan Wakely + + * include/bits/basic_string.h, include/bits/locale_classes.h, + include/bits/valarray_after.h, include/bits/valarray_before.h, + include/ext/stdio_sync_filebuf.h, include/std/std_algorithm.h, + include/std/std_functional.h, include/std/std_memory.h, + include/std/std_numeric.h: Doxygen fixes. + +2004-11-19 Paolo Carlini + + * testsuite/22_locale/time_get/get_date/char/1.cc: In the checks + use, more correctly (and consistently with other testcases) the + return value of the facet (the iterator arguments are by value). + * testsuite/22_locale/time_get/get_date/char/12791.cc: Likewise. + * testsuite/22_locale/time_get/get_date/wchar_t/1.cc: Likewise. + * testsuite/22_locale/time_get/get_date/wchar_t/12791.cc: Likewise. + * testsuite/22_locale/time_get/get_monthname/char/1.cc: Likewise. + * testsuite/22_locale/time_get/get_monthname/wchar_t/1.cc: Likewise. + * testsuite/22_locale/time_get/get_time/char/1.cc: Likewise. + * testsuite/22_locale/time_get/get_time/wchar_t/1.cc: Likewise. + * testsuite/22_locale/time_get/get_weekday/char/1.cc: Likewise. + * testsuite/22_locale/time_get/get_weekday/wchar_t/1.cc: Likewise. + * testsuite/22_locale/time_get/get_year/char/1.cc: Likewise. + * testsuite/22_locale/time_get/get_year/wchar_t/1.cc: Likewise. + +2004-11-19 Jonathan Wakely + + * Makefile.am (doxygen, doxygen-maint, doxygen-man): Remove extra '$' + from host_alias variable. + * Makefile.in: Regenerate. + +2004-11-19 Chris Jefferson + + * include/bits/stl_list.h (list::back, list::back const): + Don't decrement temporary. + +2004-11-19 Paolo Carlini + + * include/bits/stl_deque.h (deque::front, deque::front const, + deque::back, deque::back const): Slightly tweak for stylistic + consistency. + +2004-11-18 Paolo Carlini + + * testsuite/26_numerics/numeric/sum_diff.cc: Use VERIFY. + * testsuite/ext/array_allocator/1.cc: Likewise. + * testsuite/ext/array_allocator/2.cc: Likewise. + * testsuite/ext/array_allocator/3.cc: Likewise. + * testsuite/ext/enc_filebuf/char/13598.cc: Likewise. + +2004-11-18 Paolo Carlini + + * include/bits/locale_facets.tcc (num_get<>::do_get(void*&)): + If the failbit is set, don't set it again. + (money_get<>::_M_extract): Minor stylistic tweak: consistently + with the other functions, take care of eofbit at the end. + +2004-11-18 Paolo Carlini + + DR 434. bitset::to_string() hard to use [Ready] + * include/std/std_bitset.h (to_string): Add three overloads, taking + fewer template arguments. + * docs/html/ext/howto.html: Add an entry for DR 434. + * testsuite/23_containers/bitset/to_string/1.cc: New. + +2004-11-17 Paolo Carlini + + * include/bits/istream.tcc (getline(basic_istream<>&, basic_string<>&, + _CharT)): Remove temporary kludge for libstdc++/15002. + * include/std/std_streambuf.h (class basic_streambuf): Declare + getline(basic_istream<>&, basic_string<>&, _CharT) as friend. + * include/bits/basic_string.h (getline(basic_istream<>&, + basic_string<>&, _CharT)): Declare optimized specializations for + char and wchar_t, using protected members of basic_streambuf. + * src/istream.cc: Define the latter. + +2004-11-16 Jonathan Wakely + + * docs/html/19_diagnostics/howto.html: Document change from + _GLIBCPP_CONCEPT_CHECKS to _GLIBCXX_CONCEPT_CHECKS in 3.4. + +2004-11-16 Matthias Klose + + * docs/doxygen/user.cfg.in: Set HAVE_DOT to NO. + +2004-11-16 Matthias Klose + + * Makefile.am (doxygen, doxygen-maint, doxygen-man): Use host_alias + instead of build_alias. + * docs/doxygen/run_doxygen: Likewise. + * docs/doxygen/user.cfg.in: Likewise. + * Makefile.in: Regenerate. + +2004-11-15 Paolo Carlini + + * include/bits/streambuf.tcc (__copy_streambufs): Provide + a generic version of the function, not using the protected + members of basic_streambuf. + * include/std/std_streambuf.h (__copy_streambufs): Declare + optimized specializations for char and wchar_t. + * src/streambuf.cc: New file, define the latter. + * src/Makefile.am: Add. + * src/Makefile.in: Regenerate. + +2004-11-15 Matthias Klose + + * docs/doxygen/run_doxygen: Add --build_alias option, + substitute it in docs/doxygen/user.cfg.in. + * docs/doxygen/user.cfg.in: Use build_alias. + * Makefile.am: Pass --build_alias to run_doxygen + * Makefile.in: Regenerate. + +2004-11-15 Benjamin Kosnik + + * testsuite/testsuite_abi.cc (check_version): Add GLIBCXX_3.4.4. + +2004-11-15 Paolo Carlini + + * docs/html/ext/lwg-active.html, lwg-defects.html: Import Revision 33. + +2004-11-14 Paolo Carlini + + * include/bits/streambuf_iterator.h (istreambuf_iterator::_M_get): + Slightly tweak for clarity (also leads to measurably better code). + +2004-11-12 Andrew Pinski + + PR other/14264 + * testsuite/lib/libstdc++.exp: Set LC_ALL and LANG to C. + +2004-11-09 Paolo Carlini + + * include/bits/locale_facets.tcc (time_get<>::do_get_weekday, + time_get<>::do_get_monthname): Absolutely avoid dereferencing + end iterators. + + * include/bits/locale_facets.tcc (time_get<>::_M_extract_name): + Minor tweak. + +2004-11-08 Benjamin Kosnik + Doug Gregor + + PR libstdc++/17664 + * src/debug.cc : Just use one mutex. + +2004-11-08 Benjamin Kosnik + + * configure.ac (libtool_VERSION): To 6:4:0. + * configure: Regenerate. + + * config/linker-map.gnu: Slide new symbols into GLIBCXX_3.4.4. + + * docs/doxygen/user.cfg.in: Add more extension files. + +2004-11-08 Paolo Carlini + + * include/bits/streambuf_iterator.h (class istreambuf_iterator): + Consistently use _M_c to cache the current char, i.e., not only + when operator++(int) is involved; change _M_c to mutable. + (_M_get()): Always save the return value of _M_sbuf->sgetc() into + _M_c. + * testsuite/22_locale/time_get/get_monthname/char/1.cc: Fix + (long standing) typo. + * testsuite/22_locale/time_get/get_monthname/wchar_t/1.cc: Likewise. + * testsuite/22_locale/time_get/get_weekday/char/1.cc: Likewise. + * testsuite/22_locale/time_get/get_weekday/wchar_t/1.cc: Likewise. + +2004-11-08 Paolo Carlini + + * include/bits/istream.tcc (getline(char_type*, streamsize, + char_type), ignore(streamsize), ignore(streamsize, int_type)): + Restore a generic version of the functions, not using the + protected members of basic_streambuf. + * include/std/std_istream.h (getline(char_type*, streamsize, + char_type), ignore(streamsize), ignore(streamsize, int_type)): + Declare optimized specializations for char and wchar_t. + * src/istream.cc: New file, define the latter. + * src/Makefile.am: Add. + * src/Makefile.in: Regenerate. + +2004-11-07 Paolo Carlini + + * testsuite/performance/27_io/ifstream_getline-2.cc: New. + +2004-11-05 Benjamin Kosnik + + PR libstdc++/17218 + PR libstdc++/17223 + * docs/doxygen/filter: Remove. + * docs/doxygen/filter.sed: Remove. + * docs/doxygen/mainpage.html: Add link to functions. + * docs/doxygen/run_doxygen: Changes due to new source filtering. + * docs/doxygen/user.cfg.in: Update to doxygen 1.3.9.1, tweak. + * include/bits/allocator.h: Tweaks for doxygen. + * include/bits/char_traits.h: Same. + * include/bits/codecvt.h: Same. + * include/bits/concurrence.h: Same. + * include/bits/locale_facets.h: Same. + * include/ext/array_allocator.h: Same. + * include/ext/debug_allocator.h: Same. + * include/ext/malloc_allocator.h: Same. + * include/ext/mt_allocator.h: Same. + * include/ext/new_allocator.h: Same. + * include/ext/pool_allocator.h: Same. + * include/ext/stdio_sync_filebuf.h: Same. + * include/std/std_memory.h: Same. + * include/tr1/array: Same. + * include/tr1/tuple: Same. + * config/locale/ieee_1003.1-2001/codecvt_specializations.h: Same. + * config/os/gnu-linux/ctype_base.h: Same. + +2004-11-04 Paolo Carlini + + * include/bits/locale_facets.tcc (num_get<>::do_get(bool&)): + Evaluate __beg == __end the exact strict minimum number of times. + +2004-11-03 Jonathan Wakely + + * include/bits/stl_numeric.h (partial_sum, adjacent_difference): + Avoid dereferencing two times __first in the prologue. + +2004-11-03 Paolo Carlini + + * include/bits/stl_numeric.h: Trivial formatting fixes. + +2004-11-03 Benjamin Kosnik + + * include/bits/c++config: Spacing. + * libsupc++/del_op.cc: Include c++config.h. + * libsupc++/del_opnt.cc: Same. + * libsupc++/del_opv.cc: Same. + * libsupc++/del_opvnt.cc: Same. + * libsupc++/new_op.cc: Same. + * libsupc++/new_opnt.cc: Same. + * libsupc++/new_opv.cc: Same. + * libsupc++/new_opvnt.cc: Same. + +2004-11-03 Aaron W. LaFramboise + + * config/os/bsd/darwin/os_defines.h + (_GLIBCXX_WEAK_DEFINITION): Define. + * include/bits/c++config (_GLIBCXX_WEAK_DEFINITION): Define. + * libsupc++/del_op.cc (operator delete(void *)): Use + _GLIBCXX_WEAK_DEFINITION. + * libsupc++/del_opnt.cc + (operator delete(void *, const std::nothrow_t&)): Same. + * libsupc++/del_opv.cc (operator delete[](void *)): Same. + * libsupc++/del_opvnt.cc + (operator delete[](void *, const std::nothrow_t&)): Same. + * libsupc++/new_op.cc (operator new(std::size_t)): Same. + * libsupc++/new_opnt.cc + (operator new(std::size_t, const std::nothrow_t&)): Same + * libsupc++/new_opv.cc (operator new[](std::size_t)): Same. + * libsupc++/new_opvnt.cc + (operator new[](std::size_t, const std::nothrow_t&)): Same. + 2004-11-02 Paolo Carlini * include/bits/locale_facets.tcc (num_get<>::_M_extract_int): @@ -7,7 +263,7 @@ 2004-11-02 Benjamin Kosnik Lothar Werzinger - PR libstdc++/17627 + PR libstdc++/17664 * src/debug.cc: Include concurrence, use mutexes. (_Safe_iterator_base::_M_attach): Here. (_Safe_iterator_base::_M_detach): Here.