| 2007-12-30 Paolo Carlini <pcarlini@suse.de> |
| |
| * include/std/tuple (_Tuple_impl<>::_Tuple_impl(typename |
| std::remove_reference<>::type&&, typename |
| std::remove_reference<>::type&&...), |
| _Tuple_impl(const _Tuple_impl<>&), _Tuple_impl(_Tuple_impl&&), |
| _Tuple_impl(_Tuple_impl<>&&), operator=(_Tuple_impl&&), |
| operator=(const _Tuple_impl<>&), operator=(_Tuple_impl<>&&)): Add. |
| (tuple<>::tuple(const _Elements&...), tuple(_UElements&&...), |
| tuple(tuple&&), tuple(const tuple<>&), tuple(tuple<>&&), |
| operator=(tuple&&), operator=(const tuple<>&), operator=(tuple<>&&)): |
| Likewise. |
| (tuple<_T1, _T2>::tuple(const _T1&, const _T2&, tuple(_U1&&, _U2&&), |
| tuple(tuple&&), tuple(tuple<>&&), tuple(pair<>&&), operator=(tuple&&), |
| operator=(tuple<>&&), operator=(pair<>&&)): Likewise. |
| (tuple<>::tuple(typename __add_c_ref<_Elements>::type...), |
| tuple<_T1, _T2>::tuple(typename __add_c_ref<>::type, |
| typename __add_c_ref<>::type)): Remove. |
| * testsuite/tr1/6_containers/tuple/creation_functions/tie2.cc: New. |
| * testsuite/20_util/tuple/creation_functions/tie2.cc: Likewise. |
| * testsuite/20_util/tuple/moveable.cc: Likewise. |
| |
| 2007-12-29 Gerald Pfeifer <gerald@pfeifer.com> |
| |
| * config/os/mingw32/error_constants.h: Fix typo in comment. |
| |
| 2007-12-29 Danny Smith <dannysmith@users.sourceforge.net> |
| |
| * config/os/mingw32/error_constants.h (enum posix_errno): Move |
| inside namespace posix_error |
| . |
| 2007-12-27 Paolo Carlini <pcarlini@suse.de> |
| |
| PR libstdc++/34538 |
| * config/os/generic/error_constants.h (enum posix_errno): Move |
| inside namespace posix_error. |
| * include/std/system_error (error_category::posix, |
| error_code::error_code(posix_errno), error_code::posix): Adjust. |
| * src/system_error.cc (gnu_error_category::posix): Likewise. |
| * testsuite/27_io/basic_ostream/inserters_other/wchar_t/error_code.cc: |
| Adjust. |
| * testsuite/27_io/basic_ostream/inserters_other/char/error_code.cc: |
| Likewise. |
| * testsuite/19_diagnostics/error_code/cons/1.cc: Likewise. |
| * testsuite/19_diagnostics/error_code/operators/bool.cc: Likewise. |
| * testsuite/19_diagnostics/error_code/operators/equal.cc: Likewise. |
| * testsuite/19_diagnostics/error_code/operators/not_equal.cc: |
| Likewise. |
| * testsuite/19_diagnostics/error_category/cons/copy_neg.cc: Likewise. |
| * testsuite/19_diagnostics/error_category/cons/default.cc: Likewise. |
| * testsuite/19_diagnostics/error_category/operators/equal.cc: |
| Likewise. |
| * testsuite/19_diagnostics/error_category/operators/not_equal.cc: |
| Likewise. |
| * testsuite/19_diagnostics/headers/system_error/types_std_c++0x.cc: |
| Likewise. |
| * testsuite/19_diagnostics/system_error/cons-1.cc: Likewise. |
| * testsuite/19_diagnostics/system_error/what-4.cc: Likewise. |
| * testsuite/19_diagnostics/headers/system_error/34538.cc: New. |
| |
| 2007-12-26 Paolo Carlini <pcarlini@suse.de> |
| |
| * testsuite/25_algorithms/copy/34595.C: Rename to 34595.cc. |
| |
| 2007-12-26 Paolo Carlini <pcarlini@suse.de> |
| |
| PR libstdc++/34595 |
| * include/bits/stl_algobase.h (struct __cm_assign): Remove. |
| (struct __copy_move<true, false, _Category>, |
| struct __copy_move<true, false, random_access_iterator_tag>, |
| struct __copy_move_backward<true, false, _Category>, |
| struct __copy_move_backward<true, false, random_access_iterator_tag>): |
| Add. |
| (struct __copy_move, struct __copy_move_backward, |
| struct __copy_move<false, false, random_access_iterator_tag>, |
| struct __copy_move_backward<false, false, random_access_iterator_tag>): |
| Adjust. |
| * testsuite/25_algorithms/copy/34595.C: New. |
| |
| 2007-12-26 Chris Fairles <chris.fairles@gmail.com> |
| Paolo Carlini <pcarlini@suse.de> |
| |
| * include/std/tuple: New. |
| * include/tr1/tuple: New, adjust from tr1_impl/tuple code. |
| * include/tr1_impl/tuple: Remove. |
| * include/Makefile.am: Update. |
| * include/Makefile.in: Regenerate. |
| |
| 2007-12-25 Paolo Carlini <pcarlini@suse.de> |
| |
| * include/tr1_impl/hashtable_policy.h (__lower_bound): Add. |
| (_Prime_rehash_policy::_M_next_bkt, _M_bkt_for_elements, |
| _M_need_rehash): Use __lower_bound. |
| * include/std/unordered_map: Do not include the whole <algorithm>, |
| include <bits/stl_algobase.h>. |
| * include/std/unordered_set: Likewise. |
| * include/tr1/unordered_map: Likewise. |
| * include/tr1/unordered_set: Likewise. |
| |
| 2007-12-24 Paolo Carlini <pcarlini@suse.de> |
| |
| * testsuite/20_util/tuple/cons/big_tuples.cc: New. |
| * testsuite/20_util/tuple/cons/constructor.cc: Likewise. |
| * testsuite/20_util/tuple/cons/assignment.cc: Likewise. |
| * testsuite/20_util/tuple/tuple_element.cc: Likewise. |
| * testsuite/20_util/tuple/tuple_size.cc: Likewise. |
| * testsuite/20_util/tuple/comparison_operators/comparisons.cc: |
| Likewise. |
| * testsuite/20_util/tuple/element_access/get.cc: Likewise. |
| * testsuite/20_util/tuple/creation_functions/23978.cc: Likewise. |
| * testsuite/20_util/tuple/creation_functions/tie.cc: Likewise. |
| * testsuite/20_util/tuple/creation_functions/make_tuple.cc: Likewise. |
| |
| * testsuite/20_util/tuple/requirements/explicit_instantiation.cc: |
| Fix header file and namespace. |
| |
| * testsuite/tr1/6_containers/tuple/cons/big_tuples.cc: Minor tweaks. |
| * testsuite/tr1/6_containers/tuple/cons/constructor.cc: Likewise. |
| * testsuite/tr1/6_containers/tuple/cons/assignment.cc: Likewise. |
| * testsuite/tr1/6_containers/tuple/tuple_element.cc: Likewise. |
| * testsuite/tr1/6_containers/tuple/tuple_size.cc: Likewise. |
| * testsuite/tr1/6_containers/tuple/comparison_operators/ |
| comparisons.cc: Likewise. |
| * testsuite/tr1/6_containers/tuple/element_access/get.cc: Likewise. |
| * testsuite/tr1/6_containers/tuple/creation_functions/tie.cc: Likewise. |
| * testsuite/tr1/6_containers/tuple/creation_functions/make_tuple.cc: |
| Likewise. |
| |
| 2007-12-24 Jonathan Wakely <jwakely.gcc@gmail.com> |
| |
| * testsuite/tr1/2_general_utilities/shared_ptr/thread/ |
| default_weaktoshared.cc: Use static_cast not reinterpret_cast. |
| * testsuite/tr1/2_general_utilities/shared_ptr/thread/ |
| mutex_weaktoshared.cc: Likewise. |
| |
| 2007-12-24 Paolo Carlini <pcarlini@suse.de> |
| |
| * include/tr1_impl/hashtable_policy.h (_Prime_rehash_policy:: |
| _M_next_bkt, _M_bkt_for_elements, _M_need_rehash): Use __builtin_ceil. |
| * include/std/unordered_map: Do not include <cmath>; prefer |
| <bits/stringfwd.h> to <string>. |
| * include/std/unordered_set: Likewise. |
| * include/tr1/unordered_map: Likewise. |
| * include/tr1/unordered_set: Likewise. |
| |
| 2007-12-24 Paolo Carlini <pcarlini@suse.de> |
| |
| * include/std/complex (complex<float>::complex(float, float)): |
| Uglify parameters. |
| |
| 2007-12-17 Jonathan Wakely <jwakely.gcc@gmail.com> |
| |
| * include/bits/locale_classes.h (has_facet, use_facet): Simplify |
| RTTI checks. |
| |
| 2007-12-17 Jonathan Wakely <jwakely.gcc@gmail.com> |
| |
| * docs/html/test.html: Fix paths and notes on running subset of tests. |
| * docs/html/ext/parallel_mode.html: Fix markup typos. |
| * docs/html/ext/pb_ds/index.html: Likewise. |
| |
| 2007-12-17 Benjamin Kosnik <bkoz@redhat.com> |
| |
| * testsuite/22_locale/global_templates/ |
| standard_facet_hierarchies.cc: Fix for generic locale model. |
| |
| 2007-12-16 Jonathan Wakely <jwakely.gcc@gmail.com> |
| |
| * ChangeLog: Fix my email address in previous two entries. |
| |
| 2007-12-16 Jonathan Wakely <jwakely.gcc@gmail.com> |
| |
| * testsuite/20_util/shared_ptr/thread/default_weaktoshared.cc: Add |
| required dg-option for cygwin and darwin targets. |
| * testsuite/20_util/shared_ptr/thread/mutex_weaktoshared.cc: Likewise. |
| |
| 2007-12-15 Jonathan Wakely <jwakely.gcc@gmail.com> |
| |
| * include/tr1_impl/boost_shared_ptr.h: Add support for allocators, |
| aliasing, make_shared and rvalue-references. Move __shared_count |
| and _Sp_counted_* classes to new headers. |
| * include/tr1_impl/boost_sp_counted_base.h: New. |
| * include/bits/boost_sp_shared_count.h: New. |
| * include/tr1/boost_sp_shared_count.h: New. |
| * include/std/memory, include/tr1/memory: Include new headers. |
| * include/Makefile.am: Adjust. |
| * include/Makefile.in: Regenerate. |
| * docs/html/documentation.html: Link to shared_ptr notes. |
| * docs/html/20_util/shared_ptr.html: New. |
| * docs/html/17_intro/c++0x_status.html: Update shared_ptr status. |
| * testsuite/20_util/shared_ptr/cons/alias.cc: New. |
| * testsuite/20_util/shared_ptr/cons/alloc.cc: Likewise. |
| * testsuite/20_util/shared_ptr/cons/move.cc: Likewise. |
| * testsuite/20_util/shared_ptr/assign/move.cc: Likewise. |
| * testsuite/20_util/shared_ptr/creation/alloc.cc: Likewise. |
| * testsuite/20_util/shared_ptr/creation/make.cc: Likewise. |
| * testsuite/20_util/shared_ptr/creation/dr402.cc: Likewise. |
| * testsuite/20_util/shared_ptr/modifiers/reset_alloc.cc: Likewise. |
| * testsuite/20_util/shared_ptr/assign/assign.cc: Duplicate tr1 test. |
| * testsuite/20_util/shared_ptr/assign/auto_ptr.cc: Likewise. |
| * testsuite/20_util/shared_ptr/assign/auto_ptr_neg.cc: Likewise. |
| * testsuite/20_util/shared_ptr/assign/auto_ptr_rvalue_neg.cc: Likewise. |
| * testsuite/20_util/shared_ptr/assign/dr541.cc: Likewise. |
| * testsuite/20_util/shared_ptr/assign/shared_ptr.cc: Likewise. |
| * testsuite/20_util/shared_ptr/assign/shared_ptr_neg.cc: Likewise. |
| * testsuite/20_util/shared_ptr/casts/1.cc: Likewise. |
| * testsuite/20_util/shared_ptr/comparison/cmp.cc: Likewise. |
| * testsuite/20_util/shared_ptr/cons/auto_ptr.cc: Likewise. |
| * testsuite/20_util/shared_ptr/cons/auto_ptr_neg.cc: Likewise. |
| * testsuite/20_util/shared_ptr/cons/copy.cc: Likewise. |
| * testsuite/20_util/shared_ptr/cons/default.cc: Likewise. |
| * testsuite/20_util/shared_ptr/cons/pointer.cc: Likewise. |
| * testsuite/20_util/shared_ptr/cons/weak_ptr.cc: Likewise. |
| * testsuite/20_util/shared_ptr/cons/weak_ptr_expired.cc: Likewise. |
| * testsuite/20_util/shared_ptr/dest/dest.cc: Likewise. |
| * testsuite/20_util/shared_ptr/misc/24595.cc: Likewise. |
| * testsuite/20_util/shared_ptr/misc/io.cc: Likewise. |
| * testsuite/20_util/shared_ptr/misc/swap.cc: Likewise. |
| * testsuite/20_util/shared_ptr/modifiers/24805.cc: Likewise. |
| * testsuite/20_util/shared_ptr/modifiers/reset.cc: Likewise. |
| * testsuite/20_util/shared_ptr/modifiers/reset_neg.cc: Likewise. |
| * testsuite/20_util/shared_ptr/modifiers/swap.cc: Likewise. |
| * testsuite/20_util/shared_ptr/modifiers/swap_neg.cc: Likewise. |
| * testsuite/20_util/shared_ptr/observers/bool_conv.cc: Likewise. |
| * testsuite/20_util/shared_ptr/observers/get.cc: Likewise. |
| * testsuite/20_util/shared_ptr/observers/unique.cc: Likewise. |
| * testsuite/20_util/shared_ptr/observers/use_count.cc: Likewise. |
| * testsuite/20_util/shared_ptr/thread/default_weaktoshared.cc: |
| Likewise. |
| * testsuite/20_util/shared_ptr/thread/mutex_weaktoshared.cc: Likewise. |
| * testsuite/20_util/shared_ptr/requirements/explicit_instantiation/ |
| 1.cc: Likewise. |
| * testsuite/20_util/shared_ptr/requirements/explicit_instantiation/ |
| 2.cc: Likewise. |
| * testsuite/20_util/shared_ptr/requirements/explicit_instantiation.cc: |
| Remove. |
| * testsuite/20_util/weak_ptr/lock/1.cc: Duplicate tr1 test. |
| * testsuite/20_util/weak_ptr/requirements/explicit_instantiation/1.cc: |
| Likewise. |
| * testsuite/20_util/weak_ptr/requirements/explicit_instantiation/2.cc: |
| Likewise. |
| * testsuite/20_util/weak_ptr/requirements/explicit_instantiation.cc: |
| Remove. |
| |
| 2007-12-15 Hans-Peter Nilsson <hp@axis.com> |
| |
| * configure.host (try_cpu settings): Set try_cpu=cris for crisv32. |
| * config/cpu/cris/atomicity.h (__exchange_and_add) |
| [__CRIS_arch_version >= 32]: Add support for CRIS v32. |
| |
| 2007-12-15 Benjamin Kosnik <bkoz@redhat.com> |
| Paolo Carlini <pcarlini@suse.de> |
| |
| * include/parallel/partial_sum.h: Include new. Fix for DR 402. |
| * include/parallel/multiway_merge.h:Fix for DR 402. |
| * include/parallel/losertree.h: Same. |
| * include/parallel/quicksort.h: Same. |
| * include/parallel/random_shuffle.h: Same. |
| * include/parallel/multiway_mergesort.h: Same. |
| |
| 2007-12-14 Benjamin Kosnik <bkoz@redhat.com> |
| |
| PR libstdc++/30127 |
| PR libstdc++/34449 |
| * include/bits/locale_classes.h (use_facet): Check facet hierarchy. |
| (has_facet): Same. |
| * testsuite/22_locale/global_templates/user_facet_hierarchies.cc: New. |
| * testsuite/22_locale/global_templates/ |
| standard_facet_hierarchies.cc: New. |
| |
| 2007-12-11 Benjamin Kosnik <bkoz@redhat.com> |
| |
| PR libstdc++/34015 |
| * include/backward/backward_warning.h: Adjust warning message. |
| |
| 2007-12-11 Paolo Carlini <pcarlini@suse.de> |
| |
| * include/bits/stl_bvector.h (vector<bool>::reserve): Move out of |
| line... |
| * include/bits/vector.tcc: ... here. |
| |
| 2007-12-10 Jonathan Wakely <jwakely.gcc@gmail.com> |
| |
| * docs/html/21_strings/howto.html: Add links to referenced articles. |
| |
| 2007-12-10 Jonathan Wakely <jwakely.gcc@gmail.com> |
| |
| * docs/html/17_intro/backwards_compatibility.html: Fix markup. |
| * docs/html/17_intro/howto.html: Likewise. |
| * docs/html/18_support/howto.html: Likewise. |
| * docs/html/ext/concurrence.html: Likewise. |
| * docs/html/documentation.html: Likewise. |
| |
| 2007-12-10 Paolo Carlini <pcarlini@suse.de> |
| |
| * testsuite/tr1/5_numerical_facilities/random/linear_congruential/ |
| requirements/non_uint_neg.cc: Avoid -Wall warnings. |
| * testsuite/tr1/5_numerical_facilities/special_functions/ |
| 01_assoc_laguerre/compile.cc: Likewise. |
| * testsuite/util/testsuite_api.h: Likewise. |
| |
| 2007-12-10 Paolo Carlini <pcarlini@suse.de> |
| |
| * testsuite/25_algorithms/nth_element/2.cc: Avoid -Wall warnings. |
| * testsuite/27_io/basic_streambuf/sgetc/wchar_t/1.cc: Likewise. |
| * testsuite/27_io/basic_streambuf/sgetc/char/1.cc: Likewise. |
| * testsuite/27_io/basic_stringbuf/sgetn/wchar_t/1.cc: Likewise. |
| * testsuite/27_io/basic_stringbuf/sgetn/char/1.cc: Likewise. |
| * testsuite/27_io/basic_stringbuf/sbumpc/wchar_t/1.cc: Likewise. |
| * testsuite/27_io/basic_stringbuf/sbumpc/char/1.cc: Likewise. |
| * testsuite/27_io/basic_stringbuf/snextc/wchar_t/1.cc: Likewise. |
| * testsuite/27_io/basic_stringbuf/snextc/char/1.cc: Likewise. |
| * testsuite/27_io/basic_istream/peek/wchar_t/12296.cc: Likewise. |
| * testsuite/27_io/basic_ostream/inserters_character/wchar_t/ |
| 28277-2.cc: Likewise. |
| * testsuite/27_io/basic_ostream/inserters_character/wchar_t/ |
| 28277-3.cc: Likewise. |
| * testsuite/27_io/basic_ostream/inserters_character/wchar_t/ |
| 28277-4.cc: Likewise. |
| * testsuite/27_io/basic_ostream/inserters_character/char/ |
| 28277-3.cc: Likewise. |
| * testsuite/27_io/basic_ostream/inserters_character/char/ |
| 28277-4.cc: Likewise. |
| * testsuite/19_diagnostics/error_code/operators/bool.cc: Likewise. |
| * testsuite/19_diagnostics/error_code/operators/bool_neg.cc: Likewise. |
| * testsuite/18_support/headers/cstddef/macros.cc: Likewise. |
| * testsuite/21_strings/basic_string/inserters_extractors/ |
| wchar_t/28277.cc: Likewise. |
| * testsuite/21_strings/basic_string/inserters_extractors/ |
| char/28277.cc: Likewise. |
| * testsuite/26_numerics/headers/cmath/25913.cc: Likewise. |
| * testsuite/ext/pb_ds/example/priority_queue_xref.cc: Likewise. |
| * testsuite/ext/vstring/inserters_extractors/wchar_t/28277.cc: Likewise. |
| * testsuite/ext/vstring/inserters_extractors/char/28277.cc: Likewise. |
| * testsuite/ext/enc_filebuf/char/13598.cc: Likewise. |
| * testsuite/22_locale/collate/compare/char/2.cc: Likewise. |
| * testsuite/22_locale/time_put/put/wchar_t/5.cc: Likewise. |
| * testsuite/22_locale/time_put/put/char/5.cc: Likewise. |
| * testsuite/22_locale/time_put/put/char/6.cc: Likewise. |
| * testsuite/22_locale/time_put/put/char/7.cc: Likewise. |
| * testsuite/22_locale/time_put/put/char/8.cc: Likewise. |
| * testsuite/22_locale/codecvt/unshift/char/1.cc: Likewise. |
| * testsuite/22_locale/codecvt/length/char/1.cc: Likewise. |
| * testsuite/22_locale/codecvt/length/char/2.cc: Likewise. |
| * testsuite/22_locale/codecvt/in/wchar_t/9.cc: Likewise. |
| * testsuite/22_locale/codecvt/in/char/1.cc: Likewise. |
| * testsuite/22_locale/codecvt/out/char/1.cc: Likewise. |
| * testsuite/22_locale/num_get/get/wchar_t/1.cc: Likewise. |
| * testsuite/22_locale/num_get/get/char/1.cc: Likewise. |
| * testsuite/tr1/5_numerical_facilities/random/uniform_int/ |
| 33128.cc: Likewise. |
| * testsuite/tr1/2_general_utilities/shared_ptr/thread/ |
| mutex_weaktoshared.cc: Likewise. |
| * testsuite/tr1/2_general_utilities/shared_ptr/thread/ |
| default_weaktoshared.cc: Likewise. |
| * testsuite/tr1/7_regular_expressions/basic_regex/assign/wchar_t/ |
| range.cc: Likewise. |
| * testsuite/tr1/7_regular_expressions/basic_regex/assign/char/ |
| range.cc: Likewise. |
| * testsuite/tr1/7_regular_expressions/basic_regex/ctors/wchar_t/ |
| range.cc: Likewise. |
| * testsuite/tr1/7_regular_expressions/basic_regex/ctors/char/ |
| range.cc: Likewise. |
| * testsuite/23_containers/multimap/operations/1.cc: Likewise. |
| * testsuite/23_containers/set/operations/1.cc: Likewise. |
| * testsuite/23_containers/vector/bool/capacity/29134.cc: Likewise. |
| * testsuite/23_containers/deque/modifiers/erase/1.cc: Likewise. |
| * testsuite/23_containers/deque/modifiers/erase/2.cc: Likewise. |
| * testsuite/23_containers/multiset/operations/1.cc: Likewise. |
| * testsuite/23_containers/map/operations/1.cc: Likewise. |
| * testsuite/util/testsuite_hooks.cc: Likewise. |
| * testsuite/util/testsuite_rvalref.h: Likewise. |
| |
| 2007-12-10 Jakub Jelinek <jakub@redhat.com> |
| |
| * include/ext/throw_allocator.h (print_to_string): Change sprintf |
| format to %lu and cast ref.second.{first,second} to long. |
| * include/debug/safe_iterator.tcc (_M_can_advance): Add parens to |
| avoid warnings. |
| |
| 2007-12-09 Benjamin Kosnik <bkoz@redhat.com> |
| |
| * docs/html/ext/howto.html: Update. |
| * docs/html/ext/sgiexts.html: Same. |
| * docs/html/ext/concurrence.html: New. Document extensions. |
| * docs/html/17_intro/api.html: Move some bits... |
| * docs/html/17_intro/backwards_compatibility.html: here. New. Add |
| compatibility suggestions, move existing ones. |
| * docs/html/17_intro/howto.html: Update info. |
| * docs/html/18_support/howto.html: Tweak. |
| * docs/html/faq/index.html: Update thread info. |
| * docs/html/documentation.html: Add links. |
| * docs/html/20_util/allocator.html: Update info. |
| * include/precompiled/stdc++.h: Add C++0x includes if appropriate. |
| * testsuite/17_intro/headers/c++200x/all.cc: Same. |
| |
| 2007-12-09 Jonathan Wakely <jwakely.gcc@gmail.com> |
| |
| * testsuite/util/testsuite_allocator.h, |
| testsuite/util/testsuite_hooks.cc, |
| testsuite/util/testsuite_character.h, |
| testsuite/util/testsuite_performance.h, |
| testsuite/util/testsuite_rvalref.h, testsuite/util/testsuite_io.h, |
| testsuite/util/testsuite_allocator.cc: Remove semi-colons after |
| namespace declarations. |
| |
| 2007-12-05 Paolo Carlini <pcarlini@suse.de> |
| |
| * include/tr1_impl/hashtable_policy.h (_Prime_rehash_policy:: |
| _S_n_primes): Add. |
| (_Prime_rehash_policy::_M_next_bkt, _M_bkt_for_elements, |
| _M_need_rehash): Adjust. |
| |
| 2007-12-03 Paolo Carlini <pcarlini@suse.de> |
| |
| * src/hashtable.cc (__prime_list): Use __SIZEOF_LONG__. |
| |
| 2007-12-03 Paolo Carlini <pcarlini@suse.de> |
| |
| * src/hashtable.cc: New. |
| * src/hashtable_c++0x.cc: Likewise. |
| * src/Makefile.am: Add. |
| * src/Makefile.in: Regenerate. |
| * include/tr1_impl/hashtable_policy.h (struct _Primes): Remove. |
| (_Prime_rehash_policy::_M_next_bkt, _M_bkt_for_elements, |
| _M_need_rehash): Adjust. |
| * config/abi/pre/gnu.ver: Update exports. |
| |
| * src/hash.cc: Minor tweak. |
| |
| 2007-12-03 Paolo Carlini <pcarlini@suse.de> |
| |
| * include/debug/unordered_map (operator==(const unordered_map&, |
| const unordered_map&), operator!=(const unordered_map&, |
| const unordered_map&), operator==(const unordered_multimap&, |
| const unordered_multimap&), operator!=(const unordered_multimap&, |
| const unordered_multimap&)): Remove. |
| (unordered_map<>::unordered_map(unordered_map&&), |
| operator=(unordered_map&&), clear, _M_invalidate_all, |
| unordered_multimap<>::unordered_multimap(unordered_multimap&&), |
| operator=(unordered_map&&), clear, _M_invalidate_all, |
| swap(unordered_map<>&&, unordered_map<>&), swap(unordered_map<>&, |
| unordered_map<>&&), swap(unordered_multimap<>&&, |
| unordered_multimap<>&), swap(unordered_multimap<>&, |
| unordered_multimap<>&&)): Add. |
| * include/debug/unordered_set (operator==(const unordered_set&, |
| const unordered_set&), operator!=(const unordered_set&, |
| const unordered_set&), operator==(const unordered_multiset&, |
| const unordered_multiset&), operator!=(const unordered_multiset&, |
| const unordered_multiset&)): Remove. |
| (unordered_set<>::unordered_set(unordered_set&&), |
| operator=(unordered_set&&), clear, _M_invalidate_all, |
| unordered_multiset<>::unordered_multiset(unordered_multiset&&), |
| operator=(unordered_set&&), clear, _M_invalidate_all, |
| swap(unordered_set<>&&, unordered_set<>&), swap(unordered_set<>&, |
| unordered_set<>&&), swap(unordered_multiset<>&&, |
| unordered_multiset<>&), swap(unordered_multiset<>&, |
| unordered_multiset<>&&)): Add. |
| * include/debug/safe_association.h (_Safe_association<>:: |
| _Safe_association(_Safe_association&&)): Add. |
| (_Safe_association<>::clear, _M_invalidate_all): Remove. |
| |
| 2007-12-01 Paolo Carlini <pcarlini@suse.de> |
| |
| * include/tr1_impl/hashtable_policy.h (struct _LessThan): Remove. |
| (_Prime_rehash_policy::_M_bkt_for_elements, _Prime_rehash_policy:: |
| _M_need_rehash): Adjust. |
| |
| 2007-12-01 Paolo Carlini <pcarlini@suse.de> |
| |
| * include/bits/stl_tempbuf.h (__get_temporary_buffer): Fold |
| in get_temporary_buffer. |
| |
| 2007-11-29 Andris Pavenis <andris.pavenis@iki.fi> |
| |
| * src/Makefile.am: Use separate vpath lines for each path. |
| |
| 2007-11-28 Johannes Singler <singler@ira.uka.de> |
| |
| * include/parallel/multiway_merge.h: Destruct only elements that |
| were have been constructed before. Code beautifying and formatting. |
| * include/parallel/losertree.h: (Copy) construct all loser tree |
| item keys, so they can be deconstructed all at once. |
| * include/parallel/quicksort.h: Fix memory leak. |
| * include/parallel/random_shuffle.h: Use copy constructor instead |
| of assignment. Code beautifying and formatting. |
| * include/parallel/unique_copy.h: Use assignment instead of copy |
| constructor. |
| * include/parallel/multiway_mergesort.h: Use copy constructor |
| instead of assignment. Code beautifying and formatting. |
| * include/parallel/random_shuffle.h: Use copy constructor instead |
| of assignment. Code beautifying. |
| |
| 2007-11-27 Kaz Kojima <kkojima@gcc.gnu.org> |
| |
| * testsuite/tr1/5_numerical_facilities/special_functions/ |
| 01_assoc_laguerre/check_nan.cc: Add -mieee for sh. |
| * testsuite/tr1/5_numerical_facilities/special_functions/ |
| 02_assoc_legendre/check_nan.cc: Likewise. |
| * testsuite/tr1/5_numerical_facilities/special_functions/ |
| 03_beta/check_nan.cc: Likewise. |
| * testsuite/tr1/5_numerical_facilities/special_functions/ |
| 04_comp_ellint_1/check_nan.cc: Likewise. |
| * testsuite/tr1/5_numerical_facilities/special_functions/ |
| 06_comp_ellint_3/check_nan.cc: Likewise. |
| * testsuite/tr1/5_numerical_facilities/special_functions/ |
| 07_conf_hyperg/check_nan.cc: Likewise. |
| * testsuite/tr1/5_numerical_facilities/special_functions/ |
| 08_cyl_bessel_i/check_nan.cc: Likewise. |
| * testsuite/tr1/5_numerical_facilities/special_functions/ |
| 09_cyl_bessel_j/check_nan.cc: Likewise. |
| * testsuite/tr1/5_numerical_facilities/special_functions/ |
| 10_cyl_bessel_k/check_nan.cc: Likewise. |
| * testsuite/tr1/5_numerical_facilities/special_functions/ |
| 11_cyl_neumann/check_nan.cc: Likewise. |
| * testsuite/tr1/5_numerical_facilities/special_functions/ |
| 12_ellint_1/check_nan.cc: Likewise. |
| * testsuite/tr1/5_numerical_facilities/special_functions/ |
| 13_ellint_2/check_nan.cc: Likewise. |
| * testsuite/tr1/5_numerical_facilities/special_functions/ |
| 14_ellint_3/check_nan.cc: Likewise. |
| * testsuite/tr1/5_numerical_facilities/special_functions/ |
| 15_expint/check_nan.cc: Likewise. |
| * testsuite/tr1/5_numerical_facilities/special_functions/ |
| 16_hermite/check_nan.cc: Likewise. |
| * testsuite/tr1/5_numerical_facilities/special_functions/ |
| 18_laguerre/check_nan.cc: Likewise. |
| * testsuite/tr1/5_numerical_facilities/special_functions/ |
| 19_legendre/check_nan.cc: Likewise. |
| * testsuite/tr1/5_numerical_facilities/special_functions/ |
| 20_riemann_zeta/check_nan.cc: Likewise. |
| * testsuite/tr1/5_numerical_facilities/special_functions/ |
| 21_sph_bessel/check_nan.cc: Likewise. |
| * testsuite/tr1/5_numerical_facilities/special_functions/ |
| 22_sph_legendre/check_nan.cc: Likewise. |
| * testsuite/tr1/5_numerical_facilities/special_functions/ |
| 23_sph_neumann/check_nan.cc: Likewise. |
| |
| 2007-11-26 Paolo Carlini <pcarlini@suse.de> |
| |
| * include/bits/locale_facets.tcc (num_put<>::_M_insert_int): When |
| ios_base::showpos and the type is signed and the value is zero, |
| prepend +. |
| * testsuite/22_locale/num_put/put/char/12.cc: New. |
| * testsuite/22_locale/num_put/put/wchar_t/12.cc: Likewise. |
| |
| 2007-11-26 Paolo Carlini <pcarlini@suse.de> |
| |
| PR libstdc++/25913 |
| * include/c_std/cmath (std::fpclassify, isfinite, isinf, isnan, |
| isnormal, signbit, isgreater, isgreaterequal, isless, islessequal, |
| islessgreater, isunordered): Guard with __enable_if and forward |
| with __promote. |
| * include/c_global/cmath: Likewise. |
| * testsuite/26_numerics/headers/cmath/25913.cc: New. |
| |
| * include/c_std/cmath (__gnu_cxx::__capture_isfinite, |
| __capture_isinf, __capture_isnan, __capture_isnormal, |
| __capture_signbit, __capture_isgreater, __capture_isgreaterequal, |
| __capture_isless, __capture_islessequal, __capture_islessgreater, |
| __capture_isunordered): Remove. |
| (std::isfinite, isinf, isnan, isnormal, signbit, isgreater, |
| isgreaterequal, isless, islessequal, islessgreater, isunordered): |
| Forward to the corresponding builtin. |
| * include/c_global/cmath: Likewise. |
| |
| * include/c_global/cmath (std::atan2, pow): Guard with __enable_if. |
| |
| 2007-11-25 Paolo Carlini <pcarlini@suse.de> |
| |
| * include/tr1_impl/unordered_map |
| (__unordered_map<>::__unordered_map(__unordered_map&&), |
| __unordered_multimap<>::__unordered_multimap(__unordered_multimap&&), |
| unordered_map<>::unordered_map(unordered_map&&), |
| unordered_multimap<>::unordered_multimap(unordered_multimap&&), |
| unordered_map<>::operator=(unordered_map&&), |
| unordered_multimap<>::operator=(unordered_multimap&&), |
| swap(unordered_map<>&&, unordered_map<>&), |
| swap(unordered_map<>&, unordered_map<>&&), |
| swap(unordered_multimap<>&&, unordered_multimap<>&), |
| swap(unordered_multimap<>&, unordered_multimap<>&&)): Add in C++0x. |
| (swap(unordered_multimap<>&, unordered_multimap<>&), |
| swap(unordered_multimap<>&, unordered_multimap<>&)): Add. |
| * include/tr1_impl/unordered_set |
| (__unordered_set<>::__unordered_set(__unordered_set&&), |
| __unordered_multiset<>::__unordered_multiset(__unordered_multiset&&), |
| unordered_set<>::unordered_set(unordered_setp&&), |
| unordered_multiset<>::unordered_multiset(unordered_multiset&&), |
| unordered_set<>::operator=(unordered_set&&), |
| unordered_multiset<>::operator=(unordered_multiset&&), |
| swap(unordered_set<>&&, unordered_set<>&), |
| swap(unordered_set<>&, unordered_set<>&&), |
| swap(unordered_multiset<>&&, unordered_multiset<>&), |
| swap(unordered_multiset<>&, unordered_multiset<>&&)): Likewise. |
| (swap(unordered_set<>&, unordered_set<>&), |
| swap(unordered_multiset<>&, unordered_multiset<>&)): Add. |
| * include/tr1_impl/hashtable (_Hashtable<>::_Hashtable(_Hashtable&&), |
| swap(_Hashtable&&)): Add in C++0x. |
| * testsuite/23_containers/unordered_map/moveable.cc: New. |
| * testsuite/23_containers/unordered_set/moveable.cc: Likewise. |
| * testsuite/23_containers/unordered_multimap/moveable.cc: Likewise. |
| * testsuite/23_containers/unordered_multiset/moveable.cc: Likewise. |
| |
| 2007-11-25 Paolo Carlini <pcarlini@suse.de> |
| |
| * include/tr1_impl/array (array<>::_M_check): Remove, not necessary |
| anymore. |
| (array<>::at): Adjust. |
| |
| * docs/html/17_intro/c++0x_status.html: Fix array::data entry. |
| |
| 2007-11-25 Paolo Carlini <pcarlini@suse.de> |
| |
| * include/bits/stl_algobase.h (__lexicographical_compare<>::__lc): |
| Move out of line. |
| |
| * include/bits/stl_algobase.h (swap_ranges): Remove redundant |
| simulated concept checks. |
| |
| 2007-11-23 Paolo Carlini <pcarlini@suse.de> |
| |
| * include/std/bitset (bitset<>::all): Add, per DR 693 [Ready]. |
| (_Base_bitset<>::_M_are_all_aux()): Add. |
| * include/debug/bitset (bitset<>::all): Add. |
| * testsuite/23_containers/bitset/all/1.cc: New. |
| * docs/html/ext/howto.html: Add an entry for DR 693. |
| |
| * include/std/bitset (bitset<0>::set, reset, flip, test): Remove, |
| not necessary anymore. |
| |
| 2007-11-23 Paolo Carlini <pcarlini@suse.de> |
| |
| * include/bits/stl_list.h (insert(iterator, value_type&&)): Just |
| forward to emplace. |
| * include/bits/stl_vector.h (insert(iterator, value_type&&)): Likewise. |
| * include/bits/stl_deque.h (insert(iterator, value_type&&)): Likewise. |
| * include/debug/list (insert(iterator, value_type&&)): Likewise. |
| * include/debug/vector (insert(iterator, value_type&&)): Likewise. |
| * include/debug/deque (insert(iterator, value_type&&)): Likewise. |
| * include/bits/list.tcc (insert(iterator, value_type&&)): Remove. |
| * include/bits/vector.tcc (insert(iterator, value_type&&)): Likewise. |
| * include/bits/deque.tcc (insert(iterator, value_type&&)): Likewise. |
| * testsuite/23_containers/vector/requirements/dr438/assign_neg.cc: |
| Adjust dg-error line number. |
| * testsuite/23_containers/vector/requirements/dr438/insert_neg.cc: |
| Likewise. |
| * testsuite/23_containers/vector/requirements/dr438/ |
| constructor_1_neg.cc: Likewise. |
| * testsuite/23_containers/vector/requirements/dr438/ |
| constructor_2_neg.cc: Likewise. |
| * testsuite/23_containers/deque/requirements/dr438/assign_neg.cc: |
| Adjust dg-error line number. |
| * testsuite/23_containers/deque/requirements/dr438/insert_neg.cc: |
| Likewise. |
| * testsuite/23_containers/deque/requirements/dr438/ |
| constructor_1_neg.cc: Likewise. |
| * testsuite/23_containers/deque/requirements/dr438/ |
| constructor_2_neg.cc: Likewise. |
| * testsuite/23_containers/list/requirements/dr438/assign_neg.cc: |
| Adjust dg-error line number. |
| * testsuite/23_containers/list/requirements/dr438/insert_neg.cc: |
| Likewise. |
| * testsuite/23_containers/list/requirements/dr438/ |
| constructor_1_neg.cc: Likewise. |
| * testsuite/23_containers/list/requirements/dr438/ |
| constructor_2_neg.cc: Likewise. |
| |
| 2007-11-22 Paolo Carlini <pcarlini@suse.de> |
| |
| * include/bits/stl_tree.h (_Rb_tree<>::_Rb_tree_impl<, true>): Remove, |
| identical in mainline to the primary template. |
| |
| 2007-11-22 Paolo Carlini <pcarlini@suse.de> |
| |
| * config/abi/pre/gnu.ver: Adjust new exports for 128-bit long double. |
| |
| 2007-11-22 Johannes Singler <singler@ira.uka.de> |
| |
| PR libstdc++/33893 |
| * include/parallel/multiway_merge.h: made omp_dynamic-safe |
| * include/parallel/workstealing.h: made omp_dynamic-safe |
| * include/parallel/base.h: infrastructure, cleanup |
| * include/parallel/par_loop.h: made omp_dynamic-safe |
| * include/parallel/features.h: activate loser tree variant |
| * include/parallel/quicksort.h: made omp_dynamic-safe |
| * include/parallel/compiletime_settings.h: settings overridable |
| * include/parallel/equally_split.h: made omp_dynamic-safe |
| * include/parallel/omp_loop_static.h: made omp_dynamic-safe |
| * include/parallel/random_shuffle.h: made omp_dynamic-safe |
| * include/parallel/balanced_quicksort.h: made omp_dynamic-safe |
| * include/parallel/set_operations.h: made omp_dynamic-safe |
| * include/parallel/unique_copy.h: made omp_dynamic-safe |
| * include/parallel/multiway_mergesort.h: made omp_dynamic-safe |
| * include/parallel/search.h: made omp_dynamic-safe |
| * include/parallel/partition.h: made omp_dynamic-safe |
| * include/parallel/partial_sum.h: made omp_dynamic-safe |
| * include/parallel/find.h: made omp_dynamic-safe |
| * include/parallel/omp_loop.h: made omp_dynamic-safe |
| * include/parallel/losertree.h: avoid default constructor |
| |
| 2007-11-21 Jonathan Wakely <jwakely.gcc@gmail.com> |
| |
| * docs/html/17_intro/C++STYLE: Fix typos. |
| |
| 2007-11-20 Benjamin Kosnik <bkoz@redhat.com> |
| |
| * docs/html/documentation.html: Validate. Add links to index, |
| correct broken links. |
| * docs/html/17_intro/C++STYLE: Add bits. |
| * docs/html/17_intro/configury.html: Correct, update. |
| * docs/html/17_intro/api.html: Correct HTML. |
| |
| * include/bits/stl_algobase.h: Adjust comment. |
| |
| 2007-11-20 Richard Sandiford <rsandifo@nildram.co.uk> |
| |
| * testsuite/ext/throw_allocator/variadic_construct.cc: Add |
| dg-require-time. |
| |
| 2007-11-20 Paolo Carlini <pcarlini@suse.de> |
| |
| * include/bits/functional_hash.h: Do not include ext/numeric_traits.h. |
| * include/tr1/functional_hash.h: Likewise. |
| * include/std/functional: Include ext/type_traits.h. |
| * include/tr1/functional: Likewise. |
| |
| 2007-11-20 Paolo Carlini <pcarlini@suse.de> |
| |
| * include/tr1_impl/functional_hash.h |
| (hash<long double>::operator()(long double)): Only declare. |
| * src/hash.cc: Define here. |
| * config/abi/pre/gnu.ver: Adjust exports. |
| * include/tr1/functional: Do not include <cmath>. |
| * include/std/functional: Likewise. |
| |
| * include/std/functional: Include <new>. |
| |
| 2007-11-18 Paolo Carlini <pcarlini@suse.de> |
| |
| * include/tr1/type_traits (_DEFINE_SPEC_BODY): Remove. |
| (_DEFINE_SPEC_0_HELPER): Rename to _DEFINE_SPEC_HELPER. |
| (_DEFINE_SPEC): Simplify; adjust uses. |
| |
| 2007-11-18 Paolo Carlini <pcarlini@suse.de> |
| |
| * include/tr1_impl/type_traits (is_reference, is_function, |
| remove_cv, is_member_pointer, remove_reference): Declare. |
| * include/tr1_impl/type_traitsfwd.h: Remove. |
| * include/Makefile.am: Adjust. |
| * include/Makefile.in: Regenerate. |
| |
| 2007-11-17 Jonathan Wakely <jwakely.gcc@gmail.com> |
| |
| * docs/html/17_intro/howto.html, docs/html/21_strings/howto.html, |
| docs/html/22_locale/codecvt.html, docs/html/23_containers/howto.html, |
| docs/html/27_io/howto.html, docs/html/ext/howto.html, |
| docs/html/debug.html, docs/html/install.html, |
| docs/html/faq/index.html: Fix typos and anachronisms. |
| |
| 2007-11-16 Paolo Carlini <pcarlini@suse.de> |
| |
| * include/bits/stl_algobase.h (struct __lexicographical_compare): |
| Move to namespace std. |
| (__lexicographical_compare_aux<>(_II1, _II1, _II2, _II2)): Add. |
| (lexicographical_compare<>(_II1, _II1, _II2, _II2)): Call the latter. |
| |
| 2007-11-16 Paolo Carlini <pcarlini@suse.de> |
| |
| * include/bits/stl_algobase.h (struct __lexicographical_compare): Add. |
| (lexicographical_compare<>(_II1, _II1, _II2, _II2)): Use it. |
| (lexicographical_compare(const unsigned char*, const unsigned char*, |
| const unsigned char*, const unsigned char*), |
| lexicographical_compare(const char*, const char*, const char*, |
| const char*)): Remove. |
| * include/ext/numeric_traits.h (__numeric_traits_floating<>:: |
| __is_signed): Add. |
| |
| 2007-11-16 Paolo Carlini <pcarlini@suse.de> |
| |
| * src/locale_facets.cc: Fix typo in Copyright. |
| |
| 2007-11-16 Paolo Carlini <pcarlini@suse.de> |
| |
| * include/bits/locale_facets.tcc (__verify_grouping): Move... |
| * src/locale_facets.cc: ... here. |
| * config/abi/pre/gnu.ver: Update exports. |
| |
| 2007-11-15 Paolo Carlini <pcarlini@suse.de> |
| |
| * include/bits/istream.tcc (basic_istream<>::sentry:: |
| sentry(basic_istream<>&, bool)): Explicitly convert to bool. |
| * include/bits/locale_facets.tcc (num_put<>::_M_insert_int(_OutIter, |
| ios_base&, _CharT, _ValueT)): Likewise. |
| * include/std/ostream (basic_ostream<>::sentry::~sentry): Likewise. |
| |
| 2007-11-15 Paolo Carlini <pcarlini@suse.de> |
| |
| PR libstdc++/34105 |
| * include/bits/stl_algobase.h: Do not include <bits/algorithmfwd.h>. |
| (lexicographical_compare(const unsigned char*, const unsigned char*, |
| const unsigned char*, const unsigned char*), |
| lexicographical_compare(const char*, const char*, const char*, |
| const char*)): Move to namespace (std, _GLIBCXX_STD_P). |
| * include/parallel/algobase.h: Do not include <bits/algorithmfwd.h>. |
| (equal): Move after mismatch. |
| * include/bits/stl_heap.h (is_heap, is_heap_until): Reorder. |
| * include/bits/char_traits.h: Include <bits/stl_algobase.h> instead |
| of <bits/algorithmfwd.h>. |
| * include/bits/stl_algo.h: Include first <bits/algorithmfwd.h>. |
| * include/bits/algorithmfwd.h (lexicographical_compare): Do not |
| declare overloads. |
| * include/parallel/partition.h: Include <parallel/random_number.h>. |
| * testsuite/util/testsuite_abi.cc: Include <algorithm>. |
| |
| 2007-11-14 Johannes Singler <singler@ira.uka.de> |
| |
| * include/parallel/multiway_merge.h: More robust finding of an |
| arbitrary existing element inside the input sequences. |
| * include/bits/stl_algo.h: Fix typo to actually call appropriate |
| sequential version. |
| |
| 2007-11-13 Benjamin Kosnik <bkoz@redhat.com> |
| |
| * docs/html/documentation.html: First pass at unified table of contents. |
| * docs/html/abi.html: Move... |
| * docs/html/17_intro/abi.html: ...here. |
| * docs/html/17_intro/porting-howto.html: Update, edit, put |
| resulting pieces into... |
| * docs/html/17_intro/api.html: New. |
| * docs/html/17_intro/c++0x_status.html: New. |
| * docs/html/17_intro/CHECKLIST: Move to... |
| * docs/html/17_intro/c++1998_status.html: ...here. |
| * docs/html/ext/tr1.html: Move ... |
| * docs/html/17_intro/tr1_status.html: ...here. |
| * docs/html/debug_mode.html: Move... |
| * docs/html/ext/debug_mode.html: ...here. |
| * docs/html/parallel_mode.html: Move... |
| * docs/html/ext/parallel_mode.html: ...here |
| * docs/html/17_intro/BUGS: Remove. |
| * docs/html/17_intro/concept_check.diff: Remove. |
| * docs/html/17_intro/HEADER_POLICY: Remove. |
| * docs/html/17_intro/headers_cc.txt: Remove. |
| * docs/html/17_intro/PROBLEMS: Remove. |
| * docs/html/17_intro/RELEASE-NOTES: Remove. |
| * docs/html/explanations.html: Remove. |
| * docs/html/makedoc.awk: Remove. |
| * docs/html/faq/index.txt: Remove. HTML only. |
| * /docs/html/Makefile: Remove. |
| |
| * docs/html/17_intro/configury.html: Editing, updating, |
| consistency check with doxygen conventions. Change libstdc++-v3 to |
| libstdc++. |
| * docs/html/17_intro/howto.html: Same. |
| * docs/html/17_intro/license.html: Same. |
| * docs/html/17_intro/porting.html: Same. |
| * docs/html/18_support/howto.html: Same. |
| * docs/html/19_diagnostics/howto.html: Same. |
| * docs/html/20_util/allocator.html: Same. |
| * docs/html/20_util/howto.html: Same. |
| * docs/html/21_strings/howto.html: Same. |
| * docs/html/22_locale/codecvt.html: Same. |
| * docs/html/22_locale/ctype.html: Same. |
| * docs/html/22_locale/howto.html: Same. |
| * docs/html/22_locale/messages.html: Same. |
| * docs/html/23_containers/howto.html: Same. |
| * docs/html/24_iterators/howto.html: Same. |
| * docs/html/25_algorithms/howto.html: Same. |
| * docs/html/26_numerics/howto.html: Same. |
| * docs/html/27_io/howto.html: Same. |
| * docs/html/configopts.html: Same. |
| * docs/html/debug.html: Same. |
| * docs/html/ext/ballocator_doc.html: Same. |
| * docs/html/ext/howto.html: Same. |
| * docs/html/ext/mt_allocator.html: Same. |
| * docs/html/ext/sgiexts.html: Same. |
| * docs/html/faq/index.html: Same. |
| * docs/html/install.html: Same. |
| * docs/html/test.html: Same. |
| |
| * include/bits/c++config: Change _GLIBCXX_DEPRECATED to |
| _GLIBCXX_DEPRECATED_ATTR, _GLIBCXX_VISIBILITY to |
| _GLIBCXX_VISIBILITY_ATTR. |
| * include/backward/auto_ptr.h: Same. |
| * include/backward/binders.h: Same. |
| * include/bits/stl_function.h: Same. |
| * include/std/memory: Same. |
| * include/std/streambuf: Same. |
| * include/tr1_impl/boost_shared_ptr.h: Same. |
| * src/globals_io.cc: Same. |
| * src/ios_init.cc: Same. |
| |
| 2007-11-13 Paolo Carlini <pcarlini@suse.de> |
| |
| * include/bits/deque.tcc (deque<>::_M_push_back_aux, |
| _M_push_front_aux): Do not copy unnecessarily to __t_copy. |
| |
| 2007-11-12 Chris Jefferson <chris@bubblescope.net> |
| Paolo Carlini <pcarlini@suse.de> |
| |
| * include/bits/stl_deque.h (deque<>::push_back<>(_Args...), |
| deque<>::push_front<>(_Args...), emplace<>(iterator, _Args...), |
| insert(iterator, _Tp&&), _M_push_back_aux<>(_Args&&...), |
| _M_push_front_aux<>(_Args&&...), _M_insert_aux<>(iterator, |
| _Args&&...)): Add. |
| * include/deque/deque.tcc (insert(iterator, value_type&&), |
| emplace<>(iterator, _Args...), _M_push_back_aux<>(_Args&&...), |
| _M_push_front_aux<>(_Args&&...), _M_insert_aux<>(iterator, |
| _Args&&...)): Define. |
| (_M_insert_aux(iterator, size_type, const value_type&), |
| _M_insert_aux<>(iterator, _ForwardIterator, _ForwardIterator, |
| size_type)): Use _GLIBCXX_MOVE3, _GLIBCXX_MOVE_BACKWARD3, |
| __uninitialized_move*, __uninitialized_fill_move, |
| __uninitialized_copy_move, when possible. |
| * include/bits/stl_uninitialized.h (__uninitialized_copy_copy, |
| __uninitialized_fill_copy, __uninitialized_copy_fill): Remove. |
| (__uninitialized_copy_move, __uninitialized_move_copy, |
| __uninitialized_move_fill, __uninitialized_fill_move): Add. |
| * include/debug/deque (deque<>::push_back<>(_Args...), |
| deque<>::push_front<>(_Args...), emplace<>(iterator, _Args...), |
| insert(iterator, _Tp&&)): Add. |
| * testsuite/23_containers/deque/modifiers/moveable.cc: Enable. |
| * testsuite/23_containers/deque/capacity/moveable.cc: Likewise. |
| * testsuite/23_containers/deque/cons/moveable.cc: Likewise. |
| * testsuite/23_containers/deque/requirements/dr438/assign_neg.cc: |
| Adjust dg-error line numbers. |
| * testsuite/23_containers/deque/requirements/dr438/insert_neg.cc: |
| Likewise. |
| * testsuite/23_containers/deque/requirements/dr438/ |
| constructor_1_neg.cc: Likewise. |
| * testsuite/23_containers/deque/requirements/dr438/ |
| constructor_2_neg.cc: Likewise. |
| |
| * include/debug/vector (vector<>::insert(iterator, _Tp&&)): Minor |
| tweak, prefer std::move. |
| |
| 2007-11-11 Howard Hinnant <hhinnant@apple.com> |
| |
| * include/bits/stl_pair.h (pair<>::pair<>(_U1&&, _Arg0&&, |
| _Args&&...)): Add. |
| |
| 2007-11-11 Paolo Carlini <pcarlini@suse.de> |
| |
| * include/bits/stl_list.h (list<>::_M_create_node<>(_Args&&...), |
| _M_insert<>(iterator, _Args&&...), push_front<>(_Args&&...), |
| push_back<>(_Args&&...)): Add. |
| (list<>::emplace<>(iterator, _Args&&...), insert(iterator, |
| value_type&&)): Declare. |
| (splice(iterator, list&&), splice(iterator, list&&, iterator), |
| splice(iterator, list&&, iterator, iterator), merge(list&&), |
| merge(list&&, _StrictWeakOrdering)): Add C++0x signatures. |
| * include/bits/list.tcc (list<>::emplace<>(iterator, _Args&&...), |
| insert(iterator, value_type&&)): Define. |
| * include/debug/list (list<>::emplace<>(iterator, _Args&&...), |
| insert(iterator, value_type&&)): Add. |
| (splice(iterator, list&&), splice(iterator, list&&, iterator), |
| splice(iterator, list&&, iterator, iterator), merge(list&&), |
| merge(list&&, _StrictWeakOrdering)): Add C++0x signatures, use |
| _GLIBCXX_MOVE. |
| * testsuite/23_containers/list/requirements/dr438/assign_neg.cc: |
| Likewise. |
| * testsuite/23_containers/list/requirements/dr438/insert_neg.cc: |
| Likewise. |
| * testsuite/23_containers/list/requirements/dr438/ |
| constructor_1_neg.cc: Likewise. |
| * testsuite/23_containers/list/requirements/dr438/ |
| constructor_2_neg.cc: Likewise. |
| |
| 2007-11-09 Paolo Carlini <pcarlini@suse.de> |
| |
| * include/bits/stl_deque.h (deque<>::operator=(deque&&)): Implement |
| resolution of DR 675, call clear first. |
| * include/bits/stl_list.h (list<>::operator=(list&&)): Likewise. |
| * include/bits/stl_bvector.h (vector<bool>::operator=(vector&&)): |
| Likewise. |
| * include/bits/stl_vector.h (vector<>::operator=(vector&&)): Likewise. |
| * include/bits/stl_map.h (map<>::operator=(map&&)): Likewise. |
| * include/bits/stl_multimap.h (multimap<>::operator=(multimap&&)): |
| Likewise. |
| * include/bits/stl_multiset.h (multiset<>::operator=(multiset&&)): |
| Likewise. |
| * include/bits/stl_set.h (set<>::operator=(set&&)): Likewise. |
| * include/debug/map.h (map<>::operator=(map&&)): Likewise. |
| * include/debug/set.h (set<>::operator=(set&&)): Likewise. |
| * include/debug/multimap.h (multimap<>::operator=(multimap&&)): |
| Likewise. |
| * include/debug/multiset.h (multiset<>::operator=(multiset&&)): |
| Likewise. |
| * include/debug/deque (deque<>::operator=(deque&&)): Likewise. |
| * include/debug/list (list<>::operator=(list&&)): Likewise. |
| * include/debug/vector (vector<>::operator=(vector&&)): Likewise. |
| * testsuite/23_containers/multimap/moveable.cc: Adjust. |
| * testsuite/23_containers/multiset/moveable.cc: Likewise. |
| * testsuite/23_containers/set/moveable.cc: Likewise. |
| * testsuite/23_containers/map/moveable.cc: Likewise. |
| * testsuite/20_util/pair/moveable.cc: Likewise. |
| * testsuite/23_containers/deque/requirements/dr438/assign_neg.cc: |
| Adjust dg-error line numbers. |
| * testsuite/23_containers/deque/requirements/dr438/insert_neg.cc: |
| Likewise. |
| * testsuite/23_containers/deque/requirements/dr438/ |
| constructor_1_neg.cc: Likewise. |
| * testsuite/23_containers/deque/requirements/dr438/ |
| constructor_2_neg.cc: Likewise. |
| * testsuite/23_containers/list/requirements/dr438/assign_neg.cc: |
| Likewise. |
| * testsuite/23_containers/list/requirements/dr438/insert_neg.cc: |
| Likewise. |
| * testsuite/23_containers/list/requirements/dr438/ |
| constructor_1_neg.cc: Likewise. |
| * testsuite/23_containers/list/requirements/dr438/ |
| constructor_2_neg.cc: Likewise. |
| * testsuite/23_containers/vector/requirements/dr438/assign_neg.cc: |
| Likewise. |
| * testsuite/23_containers/vector/requirements/dr438/insert_neg.cc: |
| Likewise. |
| * testsuite/23_containers/vector/requirements/dr438/ |
| constructor_1_neg.cc: Likewise. |
| * testsuite/23_containers/vector/requirements/dr438/ |
| constructor_2_neg.cc: Likewise. |
| |
| 2007-11-09 Paolo Carlini <pcarlini@suse.de> |
| |
| PR libstdc++/34032 |
| * acinclude.m4 ([GLIBCXX_ENABLE_C99], [GLIBCXX_CHECK_C99_TR1]): |
| Use -std=c++98 instead of the default -std=gnu++98. |
| * configure: Regenerate. |
| |
| 2007-11-08 Paolo Carlini <pcarlini@suse.de> |
| |
| * config/io/basic_file_stdio.cc (fopen_mode): Add modes missing |
| per DR 596. |
| * testsuite/27_io/basic_filebuf/open/char/4.cc: Extend. |
| * include/std/fstream: Update comment preceding open. |
| * docs/html/ext/howto.html: Update. |
| |
| 2007-11-08 Paolo Carlini <pcarlini@suse.de> |
| |
| * include/std/type_traits (__decay_selector<_Up, false, false>): |
| Change according to DR 705. |
| * include/bits/stl_pair.h (make_pair(_T1&&, _T2&&)): Change |
| according to DR 706. |
| * include/tr1_impl/tuple: Tweak. |
| |
| 2007-11-08 Paolo Carlini <pcarlini@suse.de> |
| |
| * include/debug/vector (push_back, emplace): Fix signature typo. |
| |
| 2007-11-08 Paolo Carlini <pcarlini@suse.de> |
| |
| * include/bits/locale_facets.h (ctype<char>::taple, classic_table): |
| Implement trivial resolution of DR 695 [Ready]. |
| * testsuite/22_locale/ctype/dr695.cc: New. |
| * docs/html/ext/howto.html: Update. |
| |
| 2007-11-08 Paolo Carlini <pcarlini@suse.de> |
| |
| * docs/html/ext/lwg-active.html: Update to Revision R52. |
| * docs/html/ext/lwg-closed.html: Likewise. |
| * docs/html/ext/lwg-defects.html: Likewise. |
| * docs/html/ext/howto.html: Adjust. |
| |
| 2007-11-07 Paolo Carlini <pcarlini@suse.de> |
| |
| * include/tr1_impl/complex (fabs): In C++0x mode adjust |
| return type per DR 595 [Ready]. |
| |
| 2007-11-07 Paolo Carlini <pcarlini@suse.de> |
| |
| * include/bits/stl_iterator.h (move_iterator<>::pointer): Adjust |
| typedef per DR 680 [Ready]. |
| |
| 2007-11-06 Paolo Carlini <pcarlini@suse.de> |
| |
| * include/bits/vector.tcc (vector<>::_M_insert_aux<>(iterator, |
| _Args&&...)): In C++0x mode do not use temporary copies. |
| (insert(iterator, const value_type&)): Copy to a temporary |
| when not reallocating. |
| |
| * include/bits/vector.tcc (insert(iterator, value_type&&)): |
| Minor tweaks in C++0x mode. |
| |
| 2007-11-06 Jonathan Wakely <jwakely.gcc@gmail.com> |
| |
| * include/tr1_impl/boost_shared_ptr.h: Avoid unnecessary memory |
| barriers in _S_atomic case. |
| |
| 2007-11-05 Chris Jefferson <chris@bubblescope.net> |
| Paolo Carlini <pcarlini@suse.de> |
| |
| * include/bits/stl_vector.h (vector<>::push_back<>(_Args...), |
| emplace<>(iterator, _Args...), insert(iterator, _Tp&&), |
| _M_insert_aux<>(iterator, _Args&&...)): Add. |
| * include/bits/vector.tcc (insert(iterator, value_type&&), |
| emplace<>(iterator, _Args...), _M_insert_aux<>(iterator, _Args&&...)): |
| Define. |
| (_M_fill_insert(iterator, size_type, const value_type&), |
| _M_range_insert(iterator, _ForwardIterator, _ForwardIterator, |
| std::forward_iterator_tag)): Use __uninitialized_move_a, |
| _GLIBCXX_MOVE_BACKWARD3 when possible. |
| * include/bits/stl_uninitialized.h (__uninitialized_move_a): Add. |
| * include/debug/vector (vector<>::push_back<>(_Args...), |
| emplace<>(iterator, _Args...), insert(iterator, _Tp&&)): Add. |
| * testsuite/23_containers/vector/modifiers/moveable.cc: Enable. |
| * testsuite/23_containers/vector/resize/moveable.cc: Likewise. |
| * testsuite/23_containers/vector/cons/moveable.cc: Likewise. |
| * testsuite/23_containers/vector/requirements/dr438/assign_neg.cc: |
| Adjust dg-error line numbers. |
| * testsuite/23_containers/vector/requirements/dr438/insert_neg.cc: |
| Likewise. |
| * testsuite/23_containers/vector/requirements/dr438/ |
| constructor_1_neg.cc: Likewise. |
| * testsuite/23_containers/vector/requirements/dr438/ |
| constructor_2_neg.cc: Likewise. |
| |
| 2007-11-03 Paolo Carlini <pcarlini@suse.de> |
| Kai-Uwe Bux <bux@kubux.net> |
| |
| * include/tr1_impl/random (variate_generator<>::min, max, |
| operator()()): Return non-trivial values when _Engine_result_type |
| is a floating point type and result_type is an integer type. |
| |
| 2007-11-02 Paolo Carlini <pcarlini@suse.de> |
| |
| * include/bits/stl_algo.h (minmax, minmax_element): Add. |
| * include/bits/algorithmfwd.h: Update. |
| * testsuite/25_algorithms/minmax/requirements/ |
| explicit_instantiation/2.cc: New. |
| * testsuite/25_algorithms/minmax/requirements/ |
| explicit_instantiation/pod.cc: Likewise. |
| * testsuite/25_algorithms/minmax/1.cc: Likewise. |
| * testsuite/25_algorithms/minmax_element/check_type.cc: Likewise. |
| * testsuite/25_algorithms/minmax_element/requirements/ |
| explicit_instantiation/2.cc: Likewise. |
| * testsuite/25_algorithms/minmax_element/requirements/ |
| explicit_instantiation/pod.cc: Likewise. |
| * testsuite/25_algorithms/minmax_element/1.cc: Likewise. |
| * testsuite/25_algorithms/headers/algorithm/synopsis.cc: Update. |
| |
| 2007-11-02 Johannes Singler <singler@ira.uka.de> |
| |
| * include/parallel/workstealing.h: Replaced pragma by function |
| call lock. |
| * include/parallel/search.h: Same |
| * include/parallel/partition.h: Same |
| * include/parallel/find.h: Same |
| |
| 2007-11-01 Janis Johnson <janis187@us.ibm.com> |
| |
| PR testsuite/25352 |
| * testsuite/26_numerics/headers/cmath/c99_classification_macros_c.cc: |
| Remove xfail from dg-do and add dg-skip-if. |
| |
| 2007-10-31 Paolo Carlini <pcarlini@suse.de> |
| |
| * include/bits/stl_queue.h (queue<>::push(value_type&&)): Replace |
| with "emplace" version per DR 756. |
| (priority_queue<>::push(value_type&&)): Likewise. |
| * include/bits/stl_stack.h (stack<>::push(value_type&&)): Likewise. |
| |
| 2007-10-30 Paolo Carlini <pcarlini@suse.de> |
| |
| * include/tr1_impl/random (uniform_int<>:: |
| _M_call(_UniformRandomNumberGenerator&, result_type, result_type, |
| true_type)): Only declare. |
| * include/tr1_impl/random.tcc (uniform_int<>:: |
| _M_call(_UniformRandomNumberGenerator&, result_type, result_type, |
| true_type)): Re-do, unbiased for the currently supported ranges; |
| add comment. |
| |
| 2007-10-30 Benjamin Kosnik <bkoz@redhat.com> |
| |
| * docs/html/ext/pb_ds/multimap_text_insert_timing_test_small.html: |
| Correct filename. |
| * docs/html/ext/pb_ds/multimap_text_find_timing_test_large.html: Same. |
| * docs/html/ext/pb_ds/ |
| multimap_text_insert_mem_usage_test_small.html: Same. |
| * docs/html/ext/pb_ds/multimap_text_insert_timing_test_large.html: Same. |
| * docs/html/ext/pb_ds/ |
| multimap_text_insert_mem_usage_test_large.html: Same. |
| * docs/html/ext/pb_ds/multimap_text_find_timing_test_small.html: Same. |
| |
| 2007-10-30 Benjamin Kosnik <bkoz@redhat.com> |
| |
| * include/Makefile.am (PCHFLAGS): Remove -Wno-deprecated. |
| * include/Makefile.in: Regenerate. |
| |
| * include/std/memory: Remove extraneous include. |
| |
| 2007-10-29 Benjamin Kosnik <bkoz@redhat.com> |
| |
| * include/bits/c++config (_GLIBCXX_DEPRECATED, |
| _GLIBCXX_USE_DEPRECATED): New. Adjust comments. |
| * include/bits/stl_auto_ptr.h: Move... |
| * includse/backward/auto_ptr.h: ...here. |
| * include/bits/stl_function.h (binder1st, binder2nd, bind1st, |
| bind2nd): Move... |
| * include/backward/binders.h: ...here. Deprecate in C++0x. |
| |
| * include/tr1_impl/boost_shared_ptr.h: Guard auto_ptr usage. |
| * include/std/memory: Same. |
| * include/std/streambuf: Consistent use of _GLIBCXX_USE_DEPRECATED. |
| |
| * include/backward/strstream: Fix guard macros. |
| * include/backward/backward_warning.h: Adjust for all new items. |
| |
| * config/abi/pre/gnu.ver: Export basic_streambuf::stossc. |
| |
| * include/Makefile.am (backward_headers): Adjust. |
| * include/Makefile.in: Regenerate. |
| * configure: Regenerate. |
| |
| 2007-10-29 Benjamin Kosnik <bkoz@redhat.com> |
| |
| * include/Makefile.am (ext_compat_headers): New. |
| * include/Makefile.in: Regenerate. |
| * configure: Regenerate. |
| |
| 2007-10-28 Paolo Carlini <pcarlini@suse.de> |
| |
| * include/bits/stl_algobase.h (_GLIBCXX_MOVE3, |
| _GLIBCXX_MOVE_BACKWARD3): Add. |
| * include/bits/stl_iterator.h (_GLIBCXX_MAKE_MOVE_ITERATOR): Add. |
| * include/bits/vector.tcc (vector<>::reserve): Use the latter. |
| (vector<>::erase): Use _GLIBCXX_MOVE3. |
| * include/bits/deque.tcc (deque<>::erase): Use _GLIBCXX_MOVE3 |
| and _GLIBCXX_MOVE_BACKWARD3. |
| * testsuite/23_containers/vector/modifiers/erase/moveable.cc: New. |
| * testsuite/23_containers/vector/capacity/reserve/moveable.cc: New. |
| * testsuite/23_containers/deque/modifiers/erase/moveable.cc: New. |
| |
| 2007-10-28 Paolo Carlini <pcarlini@suse.de> |
| |
| * include/bits/stl_uninitialized.h (uninitialized_copy): Use |
| ::new and value_type per the letter of the standard. |
| * testsuite/20_util/specialized_algorithms/uninitialized_copy/ |
| move_iterators/1.cc: New. |
| |
| * testsuite/20_util/specialized_algorithms/16505.cc: Move to... |
| * testsuite/20_util/specialized_algorithms/uninitialized_fill_n/ |
| 16505.cc: ... here. |
| * testsuite/20_util/specialized_algorithms/32158.cc: Move to... |
| * testsuite/20_util/specialized_algorithms/uninitialized_fill/ |
| 32158.cc: ... here. |
| |
| * include/bits/stl_construct.h (_Construct(_T1*)): Remove, unused. |
| |
| 2007-10-27 Paolo Carlini <pcarlini@suse.de> |
| |
| * include/bits/stl_algobase.h (struct __miter_base): Add. |
| (__copy_move_a2, __copy_move_backward_a2): Add. |
| (copy, copy_backward, move, move_backward): Adjust, call *a2 helpers. |
| * include/bits/cpp_type_traits.h (struct __is_move_iterator): Add. |
| * include/bits/streambuf_iterator.h (__copy_move_a<>): Rename |
| to __copy_move_a2. |
| * include/std/streambuf (friend __copy_move_a<>): Likewise. |
| * testsuite/25_algorithms/copy/move_iterators/1.cc: New. |
| * testsuite/25_algorithms/copy_backward/move_iterators/1.cc: Likewise. |
| |
| * include/bits/stl_iterator.h (__normal_iterator<>::_Iterator_type): |
| Rename to iterator_type. |
| |
| 2007-10-26 Paolo Carlini <pcarlini@suse.de> |
| |
| * include/ext/throw_allocator.h (throw_allocator<>:: |
| construct<>(pointer, _Args&&...)): Add. |
| * include/ext/pool_allocator.h (__pool_alloc<>:: |
| construct<>(pointer, _Args&&...)): Likewise. |
| (construct(pointer, const _Tp&)): Cast pointer to void*. |
| * include/ext/bitmap_allocator.h (bitmap_allocator<>:: |
| construct<>(pointer, _Args&&...)): Add. |
| (construct(pointer, const _Tp&)): Cast pointer to void*. |
| * include/ext/new_allocator.h (new_allocator<>:: |
| construct<>(pointer, _Args&&...)): Add. |
| (construct(pointer, const _Tp&)): Cast pointer to void*. |
| * include/ext/malloc_allocator.h (malloc_allocator<>:: |
| construct<>(pointer, _Args&&...)): Add. |
| (construct(pointer, const _Tp&)): Cast pointer to void*. |
| * include/ext/array_allocator.h (array_allocator<>:: |
| construct<>(pointer, _Args&&...)): Add. |
| (construct(pointer, const _Tp&)): Cast pointer to void*. |
| * include/ext/mt_allocator.h (__mt_alloc<>:: |
| construct<>(pointer, _Args&&...)): Add. |
| (construct(pointer, const _Tp&)): Cast pointer to void*. |
| * testsuite/util/testsuite_allocator.h (tracker_allocator<>:: |
| construct<>(pointer, _Args&&...)): Add. |
| (construct(pointer, const _Tp&)): Cast pointer to void*. |
| (uneq_allocator<>::construct<>(pointer, _Args&&...)): Add. |
| (construct(pointer, const _Tp&)): Cast pointer to void*. |
| * testsuite/ext/mt_allocator/variadic_construct.cc: New. |
| * testsuite/ext/new_allocator/variadic_construct.cc: Likewise. |
| * testsuite/ext/throw_allocator/variadic_construct.cc: Likewise. |
| * testsuite/ext/malloc_allocator/variadic_construct.cc: Likewise. |
| * testsuite/ext/pool_allocator/variadic_construct.cc: Likewise. |
| * testsuite/ext/bitmap_allocator/variadic_construct.cc: Likewise. |
| * testsuite/ext/array_allocator/variadic_construct.cc: Likewise. |
| |
| 2007-10-26 Benjamin Kosnik <bkoz@redhat.com> |
| |
| * include/std/unordered_map: Fix for parallel mode. |
| * include/std/unordered_set: Same. |
| |
| 2007-10-25 Andreas Tobler <a.tobler@schweiz.org> |
| |
| * include/Makefile.am (parallel_headers): Remove timing.h. |
| * include/Makefile.in: Regenerate. |
| |
| 2007-10-25 Johannes Singler <singler@ira.uka.de> |
| |
| * include/parallel/multiway_merge.h: Removed Timing<inactive_tag> |
| * include/parallel/random_shuffle.h: Same |
| * include/parallel/set_operations.h: Same |
| * include/parallel/tree.h: Same |
| * include/parallel/multiway_mergesort.h: Same |
| * include/parallel/timing.h: Removed completely |
| |
| 2007-10-25 Paolo Carlini <pcarlini@suse.de> |
| |
| * include/bits/stl_algo.h (__lg<>(_Size)): Slightly tweak. |
| (__lg(int), __lg(long), __lg(long long)): Add, overloads |
| exploiting __builtin_clz*. |
| |
| 2007-10-24 Paolo Carlini <pcarlini@suse.de> |
| |
| * include/tr1_impl/array (_M_instance): Align naturally. |
| * testsuite/ext/array_allocator/1.cc: Use ext/vstring, |
| more solid than our current basic_string vs alignment. |
| * testsuite/ext/array_allocator/2.cc: Likewise. |
| * testsuite/ext/array_allocator/3.cc: Likewise. |
| |
| 2007-10-20 Paolo Carlini <pcarlini@suse.de> |
| |
| * include/bits/stl_move.h (_GLIBCXX_MOVE): Wrap in parentheses. |
| * include/bits/stl_algobase.h (__niter_base<>): Pass iterators |
| by value, as everywhere else. |
| |
| 2007-10-20 Paolo Carlini <pcarlini@suse.de> |
| |
| * include/tr1_impl/random |
| (uniform_int<>::_M_call(_UniformRandomNumberGenerator&, result_type, |
| result_type, true_type)): Fix small thinko. |
| |
| 2007-10-19 Paolo Carlini <pcarlini@suse.de> |
| |
| PR libstdc++/33815 |
| * include/tr1_impl/random |
| (uniform_int<>::_M_call(_UniformRandomNumberGenerator&, result_type, |
| result_type, true_type)): Avoid the modulo (which uses the low-order |
| bits). |
| |
| 2007-10-19 Paolo Carlini <pcarlini@suse.de> |
| |
| * include/bits/stl_algobase.h (struct __cm_assign, |
| struct __copy_move, struct __copy_move_backward, move, |
| move_backward): Add. |
| (struct __copy, struct __copy_backward): Remove. |
| (__copy_aux, __copy_backward_aux): Rename to... |
| (__copy_move_a, __copy_move_backward_a): ... this, and |
| adjust calls. |
| (copy, copy_backward): Adjust calls. |
| * include/bits/streambuf_iterator.h (__copy_aux): Rename |
| to ... |
| (__copy_move_a): ... this; add bool template parameter. |
| * include/std/streambuf: Adjust friend declarations. |
| * testsuite/util/testsuite_iterators.h |
| (WritableObject<>::operator=(U&&)): Add. |
| * testsuite/25_algorithms/move/1.cc: New. |
| * testsuite/25_algorithms/move/requirements/ |
| explicit_instantiation/2.cc: Likewise. |
| * testsuite/25_algorithms/move/requirements/ |
| explicit_instantiation/pod.cc: Likewise. |
| * testsuite/25_algorithms/move_backward/1.cc: Likewise. |
| * testsuite/25_algorithms/move_backward/requirements/ |
| explicit_instantiation/2.cc: Likewise. |
| * testsuite/25_algorithms/move_backward/requirements/ |
| explicit_instantiation/pod.cc: Likewise. |
| |
| 2007-10-18 Kaz Kojima <kkojima@gcc.gnu.org> |
| |
| * testsuite/tr1/5_numerical_facilities/special_functions/ |
| 05_comp_ellint_2/check_nan.cc: Add -mieee for sh. |
| |
| 2007-10-18 Paolo Carlini <pcarlini@suse.de> |
| |
| * include/bits/allocator.h (struct __alloc_neq): Add. |
| * include/bits/stl_list.h (list<>::_M_check_equal_allocators): Use it. |
| |
| 2007-10-18 Benjamin Kosnik <bkoz@redhat.com> |
| |
| * include/ext/hash_map: To... |
| * include/backward/hash_map: ...here. Remove debug mode. |
| * include/ext/hash_set: To... |
| * include/backward/hash_set: ...here. Remove debug mode. |
| * include/ext/hash_fun.h: To... |
| * include/backward/hash_fun.h: ...here. |
| * include/ext/hashtable.h: To... |
| * include/backward/hashtable.h: ...here. |
| |
| * include/bits/c++config: Remove __gnu_cxx namespace from debug mode. |
| * include/debug/debug.h: Same. |
| |
| * include/debug/hash_map: Remove. |
| * include/debug/hash_multimap.h: Remove. |
| * include/debug/hash_set.h: Remove. |
| * include/debug/hash_set: Remove. |
| * include/debug/hash_multiset.h: Remove. |
| * include/debug/hash_map.h: Remove. |
| |
| * include/Makefile.am (ext_headers): Move hash_set, hash_map to |
| backward. |
| (debug_headers): Remove hash_map, hash_set, hash_map.h, |
| hash_map.h, hash_multiset.h, hash_multimap.h. |
| * include/Makefile.in: Regenerate. |
| |
| * docs/html/debug.html: Update. |
| * docs/html/ext/howto.html: Same. |
| * docs/html/faq/index.html: Same. |
| * docs/doxygen/Intro.3: Same. |
| * docs/doxygen/user.cfg.in: Adjust includes. |
| * testsuite/ext/hash_map: Move to... |
| * testsuite/backward/hash_map: ...here. |
| * testsuite/ext/hash_set: Move to... |
| * testsuite/backward/hash_set: ...here. |
| |
| 2007-10-18 Benjamin Kosnik <bkoz@redhat.com> |
| |
| Removal of pre-ISO C++ items from include/backwards. |
| * include/Makefile.am (backward_headers): Remove all but strstream, |
| backward_warning.h. |
| * include/Makefile.in: Regenerate. |
| * include/backward/new.h: Remove. |
| * include/backward/iterator.h: Same. |
| * include/backward/alloc.h: Same. |
| * include/backward/set.h: Same. |
| * include/backward/hashtable.h: Same. |
| * include/backward/hash_set.h: Same. |
| * include/backward/fstream.h: Same. |
| * include/backward/tempbuf.h: Same. |
| * include/backward/istream.h: Same. |
| * include/backward/bvector.h: Same. |
| * include/backward/stack.h: Same. |
| * include/backward/rope.h: Same. |
| * include/backward/complex.h: Same. |
| * include/backward/ostream.h: Same. |
| * include/backward/heap.h: Same. |
| * include/backward/iostream.h: Same. |
| * include/backward/function.h: Same. |
| * include/backward/multimap.h: Same. |
| * include/backward/pair.h: Same. |
| * include/backward/stream.h: Same. |
| * include/backward/iomanip.h: Same. |
| * include/backward/slist.h: Same. |
| * include/backward/tree.h: Same. |
| * include/backward/vector.h: Same. |
| * include/backward/deque.h: Same. |
| * include/backward/multiset.h: Same. |
| * include/backward/defalloc.h: Same. |
| * include/backward/list.h: Same. |
| * include/backward/map.h: Same. |
| * include/backward/algobase.h: Same. |
| * include/backward/hash_map.h: Same. |
| * include/backward/algo.h: Same. |
| * include/backward/queue.h: Same. |
| * include/backward/streambuf.h: Same. |
| * testsuite/backward/header_hash_set_h.cc: Same. |
| * testsuite/backward/header_slist_h.cc: Same. |
| * testsuite/backward/header_hash_map_h.cc: Same. |
| * testsuite/backward/header_tempbuf_h.cc: Same. |
| * testsuite/backward/header_deque_h.cc: Same. |
| * testsuite/backward/header_rope_h.cc: Same. |
| * testsuite/backward/header_iterator_h.cc: Same. |
| * testsuite/backward/header_hashtable_h.cc: Same. |
| |
| 2007-10-18 Benjamin Kosnik <bkoz@redhat.com> |
| |
| PR libstdc++/30085 |
| * include/debug/unordered_map: New. |
| * include/debug/unordered_set: New. |
| * include/debug/safe_association.h: New. |
| * include/std/unordered_map: Include debug header if _GLIBCXX_DEBUG. |
| * include/std/unordered_set: Same. |
| * include/Makefile.am (debug_headers): Add unordered_map, |
| unordered_set, safe_association.h. |
| * include/Makefile.in: Regenerate. |
| * testsuite/23_containers/unordered_map/requirements/debug.cc: New. |
| * testsuite/23_containers/unordered_multimap/requirements/ |
| debug.cc: New. |
| * testsuite/23_containers/unordered_set/requirements/debug.cc: New. |
| * testsuite/23_containers/unordered_multiset/requirements/ |
| debug.cc: New. |
| |
| 2007-10-18 Benjamin Kosnik <bkoz@redhat.com> |
| |
| * testsuite/util/native_type/assoc/native_hash_multimap.hpp: Remove |
| hash_map include. |
| |
| 2007-10-18 Paolo Carlini <pcarlini@suse.de> |
| |
| PR libstdc++/33807 |
| * include/bits/allocator.h (operator==(const allocator<_Tp>&, |
| const allocator<_Tp>&), operator!=(const allocator<_Tp>&, |
| const allocator<_Tp>&)): Add. |
| * testsuite/20_util/allocator/33807.cc: New. |
| |
| 2007-10-17 Paolo Carlini <pcarlini@suse.de> |
| |
| * include/bits/cpp_type_traits.h (__is_byte): Add. |
| * include/bits/stl_algobase.h (struct __fill, struct __fill_n, |
| __fill_aux, __fill_n_aux): Remove. |
| (__fill_a, __fill_n_a): Add. |
| (fill, fill_n): Adjust. |
| |
| 2007-10-17 Paolo Carlini <pcarlini@suse.de> |
| |
| * include/bits/stl_iterator.h (back_insert_iterator<>::operator= |
| (typename _Container::value_type&&), front_insert_iterator<>:: |
| operator=(typename _Container::value_type&&), insert_iterator<>:: |
| operator=(typename _Container::value_type&&)): Add. |
| |
| * include/bits/stl_iterator.h (insert_iterator<>::operator= |
| (typename _Container::const_reference)): Fix typo in signature. |
| |
| 2007-10-17 Paolo Carlini <pcarlini@suse.de> |
| |
| * include/tr1_impl/array: Correct macro guarding cbegin, cend, |
| crbegin, crend. |
| * include/tr1_impl/hashtable: Likewise. |
| |
| 2007-10-16 Paolo Carlini <pcarlini@suse.de> |
| |
| * include/ext/vstring.h (__versa_string<>::front, |
| __versa_string<>::back): Add. |
| * testsuite/ext/vstring/element_access/char/front_back.cc: New. |
| * testsuite/ext/vstring/element_access/wchar_t/front_back.cc: Likewise. |
| |
| 2007-10-16 Paolo Carlini <pcarlini@suse.de> |
| |
| * include/bits/stl_queue.h (queue<>::queue(_Sequence&&), |
| queue<>::queue(queue&&), queue<>::operator=(queue&&), |
| queue<>::push(value_type&&), queue<>::swap(queue&&), |
| swap(queue<>&, queue<>&), swap(queue<>&&, queue<>&), |
| swap(queue<>&, queue<>&&), priority_queue<>:: |
| priority_queue(const _Compare&, _Sequence&&), |
| priority_queue<>::priority_queue(_InputIterator, _InputIterator, |
| const _Compare&, _Sequence&&), |
| priority_queue<>::priority_queue(priority_queue&&), |
| priority_queue<>::operator=(priority_queue&&), |
| priority_queue<>::push(value_type&&), |
| priority_queue<>::swap(priority_queue&&), |
| swap(priority_queue<>&, priority_queue<>&), |
| swap(priority_queue<>&&, priority_queue<>&), |
| swap(priority_queue<>&, priority_queue<>&&)): Add. |
| * include/bits/stl_stack.h (stack<>::stack(_Sequence&&), |
| stack<>::push(value_type&&), stack<>::swap(stack&&), |
| swap(stack<>&, stack<>&), swap(stack<>&&, stack<>&), |
| swap(stack<>&, stack<>&&)): Add. |
| * testsuite/23_containers/queue/moveable.cc: New. |
| * testsuite/23_containers/priority_queue/moveable.cc: Likewise. |
| |
| 2007-10-16 Paolo Carlini <pcarlini@suse.de> |
| |
| * include/ext/vstring.h (__versa_string<>:: |
| __versa_string(__versa_string&&), |
| __versa_string<>::operator=(__versa_string&&, |
| swap(__versa_string<>&&, __versa_string<>&), |
| swap(__versa_string<>(&, __versa_string<>&&)): Add. |
| (__versa_string<>::swap(__versa_string&&)): Adjust for C++0x. |
| * include/ext/sso_string_base.h |
| (__sso_string_base(__sso_string_base&&)): Add. |
| (__sso_string_base()): Use _Alloc_hider(_CharT*). |
| * include/ext/rc_string_base.h (__rc_string_base(__rc_string_base&&)): |
| Add. |
| (__rc_string_base()): Use _Alloc_hider(_CharT*). |
| * include/ext/vstring_util.h (_Alloc_hider::_Alloc_hider(_CharT*)): |
| Add. |
| * testsuite/ext/vstring/moveable.cc: Add. |
| |
| * include/bits/stl_tree.h (_Rb_tree(_Rb_tree&&)): Add. |
| * include/bits/stl_map.h (map<>::map(map&&)): Forward to the latter. |
| * include/bits/stl_set.h (set<>::set(set&&)): Likewise. |
| * include/bits/stl_multimap.h (multimap<>::multimap(multimap&&)): |
| Likewise. |
| * include/bits/stl_multiset.h (multiset<>::multiset(multiset&&)): |
| Likewise. |
| * include/bits/stl_deque.h (_Deque_base<>::_Deque_base(_Deque_base&&)): |
| Add. |
| (deque<>::deque(deque&&)): Forward to the latter. |
| * include/bits/stl_list.h (_List_base<>::_List_base(_List_base&&)): |
| Add. |
| (list<>::list(list&&)): Forward to the latter. |
| * include/bits/stl_vector.h |
| (_Vector_base<>::_Vector_base(_Vector_base&&)): Add. |
| (vector<>::vector(vector&&)): Forward to the latter. |
| * include/bits/stl_bvector.h |
| (_Bvector_base<>::_Bvector_base(_Bvector_base&&)): Add. |
| (vector<bool>::vector(vector&&)): Forward to the latter. |
| |
| * testsuite/23_containers/vector/requirements/dr438/assign_neg.cc: |
| Adjust dg-error lines. |
| * testsuite/23_containers/vector/requirements/dr438/insert_neg.cc: |
| Likewise. |
| * testsuite/23_containers/vector/requirements/dr438/ |
| constructor_1_neg.cc: Likewise. |
| * testsuite/23_containers/vector/requirements/dr438/ |
| constructor_2_neg.cc: Likewise. |
| * testsuite/23_containers/deque/requirements/dr438/assign_neg.cc: |
| Likewise. |
| * testsuite/23_containers/deque/requirements/dr438/insert_neg.cc: |
| Likewise. |
| * testsuite/23_containers/deque/requirements/dr438/ |
| constructor_1_neg.cc: Likewise. |
| * testsuite/23_containers/deque/requirements/dr438/ |
| constructor_2_neg.cc: Likewise. |
| * testsuite/23_containers/list/requirements/dr438/assign_neg.cc: |
| Likewise. |
| * testsuite/23_containers/list/requirements/dr438/insert_neg.cc: |
| Likewise. |
| * testsuite/23_containers/list/requirements/dr438/ |
| constructor_1_neg.cc: Likewise. |
| * testsuite/23_containers/list/requirements/dr438/ |
| constructor_2_neg.cc: Likewise. |
| |
| 2007-10-15 Paolo Carlini <pcarlini@suse.de> |
| |
| * include/debug/set.h (set<>::cbegin, cend, crbegin, crend): Add. |
| * include/debug/multiset.h (set<>::cbegin, cend, crbegin, crend): |
| Likewise. |
| * include/debug/vector (vector<>::cbegin, cend, crbegin, crend): |
| Likewise. |
| * include/debug/map.h (map<>::cbegin, cend, crbegin, crend): |
| Likewise. |
| * include/debug/deque (deque<>::cbegin, cend, crbegin, crend): |
| Likewise. |
| * include/debug/list (list<>::cbegin, cend, crbegin, crend): |
| Likewise. |
| * include/debug/multimap.h (multimap<>::cbegin, cend, crbegin, |
| crend): Likewise. |
| * include/tr1_impl/array (array<>::cbegin, cend, crbegin, crend): |
| Likewise. |
| * include/ext/vstring.h (__versa_string<>::cbegin, cend, crbegin, |
| crend): Likewise. |
| * include/bits/stl_list.h (list<>::cbegin, cend, crbegin, crend): |
| Likewise. |
| * include/bits/stl_map.h (map<>::cbegin, cend, crbegin, crend): |
| Likewise. |
| * include/bits/stl_set.h (set<>::cbegin, cend, crbegin, crend): |
| Likewise. |
| * include/bits/stl_multimap.h (multimap<>::cbegin, cend, crbegin, |
| crend): Likewise. |
| * include/bits/stl_vector.h (vector<>::cbegin, cend, crbegin, crend): |
| Likewise. |
| * include/bits/stl_deque.h (deque<>::cbegin, cend, crbegin, crend): |
| Likewise. |
| * include/bits/stl_multiset.h (multiset<>::cbegin, cend, crbegin, |
| crend): Likewise. |
| * include/bits/stl_bvector.h (vector<bool>::cbegin, cend, crbegin, |
| crend): Likewise. |
| * include/tr1_impl/hashtable (_Hashtable<>::cbegin, cend): Add. |
| |
| * testsuite/ext/vstring/requirements/citerators.cc: Add. |
| * testsuite/23_containers/unordered_map/requirements/citerators.cc: |
| Likewise. |
| * testsuite/23_containers/multimap/requirements/citerators.cc: |
| Likewise. |
| * testsuite/23_containers/set/requirements/citerators.cc: Likewise. |
| * testsuite/23_containers/unordered_multimap/requirements/ |
| citerators.cc: Likewise. |
| * testsuite/23_containers/unordered_set/requirements/citerators.cc: |
| Likewise. |
| * testsuite/23_containers/vector/requirements/citerators.cc: Likewise. |
| * testsuite/23_containers/vector/bool/requirements/citerators.cc: |
| Likewise. |
| * testsuite/23_containers/deque/requirements/citerators.cc: Likewise. |
| * testsuite/23_containers/multiset/requirements/citerators.cc: |
| Likewise. |
| * testsuite/23_containers/list/requirements/citerators.cc: Likewise. |
| * testsuite/23_containers/unordered_multiset/requirements/ |
| citerators.cc: Likewise. |
| * testsuite/23_containers/map/requirements/citerators.cc: Likewise. |
| * testsuite/23_containers/array/requirements/citerators.cc: Likewise. |
| |
| * testsuite/23_containers/vector/requirements/dr438/assign_neg.cc: |
| Adjust dg-error lines. |
| * testsuite/23_containers/vector/requirements/dr438/insert_neg.cc: |
| Likewise. |
| * testsuite/23_containers/vector/requirements/dr438/ |
| constructor_1_neg.cc: Likewise. |
| * testsuite/23_containers/vector/requirements/dr438/ |
| constructor_2_neg.cc: Likewise. |
| * testsuite/23_containers/deque/requirements/dr438/assign_neg.cc: |
| Likewise. |
| * testsuite/23_containers/deque/requirements/dr438/insert_neg.cc: |
| Likewise. |
| * testsuite/23_containers/deque/requirements/dr438/ |
| constructor_1_neg.cc: Likewise. |
| * testsuite/23_containers/deque/requirements/dr438/ |
| constructor_2_neg.cc: Likewise. |
| * testsuite/23_containers/list/requirements/dr438/assign_neg.cc: |
| Likewise. |
| * testsuite/23_containers/list/requirements/dr438/insert_neg.cc: |
| Likewise. |
| * testsuite/23_containers/list/requirements/dr438/ |
| constructor_1_neg.cc: Likewise. |
| * testsuite/23_containers/list/requirements/dr438/ |
| constructor_2_neg.cc: Likewise. |
| |
| 2007-10-15 Paolo Carlini <pcarlini@suse.de> |
| |
| PR libstdc++/33773 (cont) |
| * testsuite/21_strings/headers/cwchar/macros.cc: Guard with |
| _GLIBCXX_USE_WCHAR_T, instead. |
| |
| 2007-10-15 Paolo Carlini <pcarlini@suse.de> |
| |
| PR libstdc++/33771 |
| PR libstdc++/33773 |
| * testsuite/21_strings/headers/cwchar/macros.cc: Guard test with |
| _GLIBCXX_HAVE_WCHAR_H. |
| * testsuite/21_strings/headers/cwctype/macros.cc: Likewise with |
| _GLIBCXX_HAVE_WCTYPE_H. |
| * testsuite/17_intro/headers/c++200x/all.cc: Guard inclusions |
| of <wchar.h> and <wctype.h>. |
| * testsuite/17_intro/headers/c++200x/all_multiple_inclusion.cc: |
| Likewise. |
| * testsuite/17_intro/headers/c++1998/all.cc: Likewise. |
| * testsuite/17_intro/headers/c++1998/all_multiple_inclusion.cc: |
| Likewise. |
| |
| 2007-10-14 Paolo Carlini <pcarlini@suse.de> |
| |
| * include/bits/stl_algo.h (is_sorted, is_sorted_until): Add. |
| * include/bits/algorithmfwd.h: Add. |
| * include/ext/algorithm: Adjust. |
| * testsuite/25_algorithms/is_sorted/requirements/ |
| explicit_instantiation/2.cc: New. |
| * testsuite/25_algorithms/is_sorted/requirements/ |
| explicit_instantiation/pod.cc: Likewise. |
| * testsuite/25_algorithms/is_sorted/1.cc: Likewise. |
| * testsuite/25_algorithms/is_sorted_until/requirements/ |
| explicit_instantiation/2.cc: Likewise. |
| * testsuite/25_algorithms/is_sorted_until/requirements/ |
| explicit_instantiation/pod.cc: Likewise. |
| * testsuite/25_algorithms/is_sorted_until/1.cc: Likewise. |
| * testsuite/25_algorithms/headers/algorithm/synopsis.cc: |
| Add is_sorted and is_sorted_until. |
| |
| * include/bits/stl_heap.h (is_heap_until): Add concept and |
| debug-mode checks. |
| |
| 2007-10-12 Paolo Carlini <pcarlini@suse.de> |
| |
| * include/bits/stl_heap.h (__is_heap_until): Add. |
| (__is_heap(_RandomAccessIterator, _Distance), |
| __is_heap(_RandomAccessIterator, _Compare, _Distance)): |
| Adjust, call the latter. |
| (is_heap, is_heap_until): Add, call the above. |
| * include/bits/algorithmfwd.h: Add. |
| * testsuite/25_algorithms/is_heap/requirements/ |
| explicit_instantiation/2.cc: New. |
| * testsuite/25_algorithms/is_heap/requirements/ |
| explicit_instantiation/pod.cc: Likewise. |
| * testsuite/25_algorithms/is_heap/1.cc: Likewise. |
| * testsuite/25_algorithms/is_heap_until/requirements/ |
| explicit_instantiation/2.cc: Likewise. |
| * testsuite/25_algorithms/is_heap_until/requirements/ |
| explicit_instantiation/pod.cc: Likewise. |
| * testsuite/25_algorithms/is_heap_until/1.cc: Likewise. |
| * testsuite/25_algorithms/headers/algorithm/synopsis.cc: |
| Add is_heap and is_heap_until. |
| |
| 2007-10-12 Benjamin Kosnik <bkoz@redhat.com> |
| |
| * docs/doxygen/user.cfg.in: Scan tr1_impl/hashtable. |
| * include/tr1_impl/hashtable: Correct comment. |
| |
| * include/ext/hash_map: Remove extraneous public markers. |
| * include/ext/hash_set: Same. |
| |
| * testsuite/25_algorithms/headers/parallel_algorithm.cc: Move |
| inside algorithm directory. |
| * testsuite/25_algorithms/headers/algorithm_parallel_mode.cc: Same. |
| * testsuite/25_algorithms/headers/parallel_algorithm_mixed1.cc: Same. |
| * testsuite/25_algorithms/headers/parallel_algorithm_mixed2.cc: Same. |
| * testsuite/25_algorithms/headers/algorithm/parallel_algorithm.cc: |
| To this. |
| * testsuite/25_algorithms/headers/algorithm/ |
| algorithm_parallel_mode.cc: Same. |
| * testsuite/25_algorithms/headers/algorithm/ |
| parallel_algorithm_mixed1.cc: Same. |
| * testsuite/25_algorithms/headers/algorithm/ |
| parallel_algorithm_mixed2.cc: Same. |
| |
| * testsuite/21_strings/basic_string/requirements/ |
| explicit_instantiation/debug.cc: Remove exception text. |
| |
| * testsuite/23_containers/vector/bool/modifiers/insert/31370.cc: |
| Fix for debug mode testing. |
| * testsuite/23_containers/vector/bool/capacity/29134.cc: Same. |
| |
| 2007-10-12 Jesper Nilsson <jesper.nilsson@axis.com> |
| |
| * testsuite/tr1/5_numerical_facilities/special_functions/ |
| 20_riemann_zeta/check_value_neg.c (MAX_ITERATIONS): Add limit |
| when target is simulator. |
| * testsuite/tr1/5_numerical_facilities/special_functions/ |
| 20_riemann_zeta/check_value_pos.c (MAX_ITERATIONS): Likewise. |
| |
| 2007-10-11 Roger Sayle <roger@eyesopen.com> |
| |
| * acinclude.m4 (GLIBCXX_CHECK_SYSTEM_ERROR): Add EOVERFLOW for Tru64. |
| * configure: Regenerate. |
| * config/os/generic/error_constants.h: Guard. |
| * testsuite/19_diagnostics/headers/system_error/ |
| types_std_c++0x.cc: Same. |
| |
| 2007-10-11 Benjamin Kosnik <bkoz@redhat.com> |
| |
| Convert ext/hash_map, set to tr1/functional, tr1/unordered_map, set. |
| * include/ext/rope: Use tr1/functional hash instead of ext/hash_fun.h. |
| * include/ext/pb_ds/detail/standard_policies.hpp: Same. |
| * include/precompiled/extc++.h: Remove hash_map, hash_set. |
| * testsuite/util/testsuite_abi.h (__gnu_cxx): Use unordered_map |
| instead of hash_map. Remove hash specialization for string. |
| * testsuite/util/testsuite_abi.cc: Include <vector>. |
| * testsuite/util/native_type/assoc/native_hash_set.hpp: Remove |
| hash_set code. |
| * testsuite/util/native_type/assoc/native_hash_map.hpp: Remove |
| hash_map code. |
| * testsuite/util/native_type/assoc/native_hash_multimap.hpp: |
| Change hash_multimap to unordered_multimap. |
| * testsuite/util/testsuite_common_types.h: Remove hash_map, hash_set. |
| * testsuite/ext/headers.cc: Same. |
| * testsuite/17_intro/headers/all_c++200x_compatibility.cc: Remove |
| hash_map.h, hash_set.h. |
| * testsuite/17_intro/headers/all.cc: Same. |
| * testsuite/17_intro/headers/all_pedantic_errors.cc: Same. |
| |
| * include/ext/pb_ds/detail/standard_policies.hpp: Format. |
| * testsuite/util/native_type/assoc/native_set.hpp: Same, |
| update comment. |
| * testsuite/util/native_type/assoc/native_map.hpp: Same. |
| * testsuite/util/native_type/assoc/native_multimap.hpp: Same. |
| * testsuite/util/performance/assoc/timing/ |
| multimap_insert_test.hpp: Same. |
| * testsuite/util/performance/assoc/timing/multimap_find_test.hpp: Same. |
| |
| 2007-10-11 Chris Jefferson <chris@bubblescope.net> |
| Paolo Carlini <pcarlini@suse.de> |
| |
| * include/bits/stl_heap.h (__push_heap, push_heap, __adjust_heap, |
| make_heap): Use _GLIBCXX_MOVE. |
| (__pop_heap): Likewise, adjust signature. |
| (pop_heap): Adjust __pop_heap call. |
| * include/bits/stl_algo.h (__heap_select): Likewise. |
| * testsuite/25_algorithms/heap/moveable.cc: Remove dg-require-rvalref. |
| * testsuite/25_algorithms/partial_sort/moveable.cc: Likewise. |
| |
| 2007-10-11 Paolo Carlini <pcarlini@suse.de> |
| |
| PR libstdc++/33734 |
| * include/ext/codecvt_specializations.h (encoding_state::good, |
| init, destroy): Use cast notation instead of reinterpret_cast. |
| |
| 2007-10-11 Paolo Carlini <pcarlini@suse.de> |
| |
| * testsuite/25_algorithms/heap/moveable.cc: Fix and extend. |
| |
| 2007-10-11 Danny Smith <dannysmith@users.sourceforge.net> |
| |
| PR libstdc++/33578 |
| * include/parallel/compatibility.h. Use POSIX sched_yield on |
| __CYGWIN__ |
| (Sleep): Add prototype for __MINGW32__. |
| |
| 2007-10-10 Jason Merrill <jason@redhat.com> |
| |
| * libsupc++/guard.cc (struct mutex_wrapper): Move into |
| anonymous namespace. |
| |
| 2007-10-10 Paolo Carlini <pcarlini@suse.de> |
| |
| * include/debug/list (list<>::list(list&&)): Fix. |
| * include/debug/vector (vector<>::vector(vector&&)): Likewise. |
| * include/debug/deque (deque<>::deque(deque&&)): Likewise. |
| * include/debug/set.h (set<>::set(set&&)): Likewise. |
| * include/debug/map.h (map<>::map(map&&)): Likewise. |
| * include/debug/multiset.h (multiset<>::multiset(multiset&&)):Likewise. |
| * include/debug/multimap.h (multimap<>::multimap(multimap&&)):Likewise. |
| |
| 2007-10-10 Benjamin Kosnik <bkoz@redhat.com> |
| |
| PR libstdc++/33633 |
| * include/debug/hash_multimap.h: Change _GLIBCXX_EXT to _GLIBCXX_EXT_D. |
| * include/debug/hash_set.h: Same. |
| * include/debug/hash_multiset.h: Same. |
| * include/debug/hash_map.h: Same. |
| |
| 2007-10-10 Benjamin Kosnik <bkoz@redhat.com> |
| |
| * include/parallel/losertree.h (loser_tree_traits_unguarded): To |
| loser_tree_unguarded_traits. |
| * include/parallel/multiway_merge.h (__gnu_parallel): Same. |
| |
| 2007-10-10 Paolo Carlini <pcarlini@suse.de> |
| Chris Fairles <chris.fairles@gmail.com> |
| |
| * include/bits/stl_algobase.h (swap): Move... |
| * include/bits/stl_move.h: ... here. |
| * include/bits/stl_pair.h (pair<>::pair(_U1&&, _U2&&), |
| pair<>::pair(pair<>&&), pair<>::operator=(pair<>&&), |
| pair<>::swap(pair&&), swap(&, &), swap(&&, &), swap(&, &&), |
| make_pair(_T1&&, _T2&&)): Add. |
| * testsuite/20_util/pair/swap.cc: Add. |
| |
| 2007-10-09 Wolfgang Bangerth <bangerth@dealii.org> |
| |
| PR libstdc++/33485 continued. |
| * include/parallel/multiway_mergesort.h: Use __builtin_alloca. |
| |
| 2007-10-09 Zhou Drangon <drangon.mail@gmail.com> |
| |
| PR libstdc++/33682 |
| * libsupc++/guard.cc: Make single conditional variable |
| implementation dependent to __GTHREAD_HAS_COND. |
| |
| 2007-10-09 Benjamin Kosnik <bkoz@redhat.com> |
| |
| PR libstdc++/33489 continued. |
| * include/parallel/features.h (_GLIBCXX_LOSER_TREE): Set to zero. |
| (_GLIBCXX_LOSER_TREE_POINTER): Set to one. |
| (_GLIBCXX_LOSER_TREE_UNGUARDED): Set to zero. |
| (_GLIBCXX_LOSER_TREE_POINTER_UNGUARDED): Set to one. |
| * include/parallel/multiway_merge.h (parallel_multiway_merge): |
| Change array of value_type to array of value_type pointers. |
| (multiway_merge_bubble): Same. |
| (multiway_merge_loser_tree): Same. |
| * include/parallel/merge.h (merge_advance_movc): Change to avoid |
| default construction. |
| * include/parallel/multiseq_selection.h (multiseq_partition): |
| Replace value_type, bool pair with value_type*, null-initialized. |
| * include/parallel/multiway_mergesort.h (parallel_sort_mwms): |
| Don't use array form of operator new for value_types. |
| (parallel_sort_mwms_pu): Same. |
| * include/parallel/quicksort.h (parallel_sort_qs_divide): Don't |
| use array form to construct pointer to value_type on stack, |
| instead use __builtin_alloca. |
| * include/parallel/random_shuffle.h (sequential_random_shuffle): Same, |
| but use operator new. |
| (parallel_random_shuffle_drs_pu): Same. |
| * include/parallel/partial_sum.h ( parallel_partial_sum_linear): Same. |
| |
| * include/parallel/losertree.h: Format. |
| * include/parallel/settings.h: Format. |
| |
| * include/parallel/multiway_merge.h: Move traits to.... |
| * include/parallel/losertree.h: ... here. |
| |
| 2007-10-09 Paolo Carlini <pcarlini@suse.de> |
| |
| * include/tr1_impl/type_traitsfwd.h (add_reference): Remove. |
| * include/tr1/type_traits (add_reference): Add forward declaration. |
| * include/tr1_impl/functional (class _Mu<>): Fix. |
| |
| 2007-10-09 Paolo Carlini <pcarlini@suse.de> |
| |
| * include/bits/boost_concept_check.h (*AssociativeContainerConcept): |
| Remove, unused. |
| |
| 2007-10-08 Johannes Singler <singler@ira.uka.de> |
| |
| * include/parallel/base.h: Added plus and multiplies functor |
| for differently typed objects. |
| * include/parallel/numeric: Use it. |
| * include/parallel/for_each_selectors.h: Allowed different types. |
| * include/parallel/partial_sum.h: Fixed return value. |
| * testsuite/26_numerics/accumulate/1.cc: Tests for accumulate. |
| * testsuite/26_numerics/inner_product/1.cc: Tests for inner_product. |
| |
| 2007-10-08 Paolo Carlini <pcarlini@suse.de> |
| |
| * include/bits/stl_move.h (_GLIBCXX_MOVE): Add. |
| * include/bits/stl_algobase.h: Adjust. |
| * include/bits/stl_pair.h: Likewise. |
| |
| * include/bits/stl_algo.h: Minor formatting fixes. |
| |
| 2007-10-08 Benjamin Kosnik <bkoz@redhat.com> |
| |
| PR libstdc++/33489 |
| * include/parallel/multiseq_selection.h: Remove default constructed |
| value_type. |
| * include/parallel/partition.h: |
| * include/parallel/partial_sum.h: Format. |
| |
| 2007-10-08 Johannes Singler <singler@ira.uka.de> |
| |
| * include/parallel/multiway_merge.h: Added reference to paper. |
| * include/parallel/multiseq_selection.h: Added reference to paper. |
| * include/parallel/workstealing.h: Added reference to paper. |
| * include/parallel/balanced_quicksort.h: Added reference to paper. |
| * include/parallel/tree.h: Added reference to paper. |
| * docs/html/parallel_mode.html: Added reference to MCSTL. |
| More documentation on compile-time settings and tuning. |
| |
| 2007-10-08 Paolo Carlini <pcarlini@suse.de> |
| |
| * include/std/utility (identity, move, forward): Move to... |
| * include/bits/stl_move.h: ... here. |
| * include/Makefile.am: Add. |
| * include/bits/stl_algobase.h: Include the latter. |
| * include/Makefile.in: Regenerate. |
| * testsuite/20_util/pair/moveable.cc: Remove dg-require-rvalref. |
| |
| 2007-10-08 Chris Jefferson <chris@bubblescope.net> |
| Paolo Carlini <pcarlini@suse.de> |
| |
| * include/bits/stl_pair.h (pair<>:pair(pair&&), |
| pair<>::operator=(pair&&)): Add. |
| |
| 2007-10-07 Chris Jefferson <chris@bubblescope.net> |
| Paolo Carlini <pcarlini@suse.de> |
| |
| * include/debug/list (list<>::list(list&&), |
| list<>::operator=(list&&)): Add. |
| (list<>::swap): Adjust. |
| (swap(list&&, list& __y), swap(list&, list&& __y)): Add. |
| * include/debug/vector (vector<>::vector(vector&&), |
| vector<>::operator=(vector&&)): Add. |
| (vector<>::swap): Adjust. |
| (swap(vector&&, vector& __y), swap(vector&, vector&& __y)): Add. |
| * include/debug/deque (deque<>::deque(deque&&), |
| deque<>::operator=(deque&&)): Add. |
| (deque<>::swap): Adjust. |
| (swap(deque&&, deque& __y), swap(deque&, deque&& __y)): Add. |
| * include/debug/set.h (set<>::set(set&&), |
| set<>::operator=(set&&)): Add. |
| (set<>::swap): Adjust. |
| (swap(set&&, set& __y), swap(set&, set&& __y)): Add. |
| * include/debug/map.h (map<>::map(map&&), |
| map<>::operator=(map&&)): Add. |
| (map<>::swap): Adjust. |
| (swap(map&&, map& __y), swap(map&, map&& __y)): Add. |
| * include/debug/multiset.h (multiset<>::multiset(multiset&&), |
| multiset<>::operator=(multiset&&)): Add. |
| (smultiet<>::swap): Adjust. |
| (swap(multiset&&, multiset& __y), |
| swap(multiset&, multiset&& __y)): Add. |
| * include/debug/multimap.h (multimap<>::multimap(multimap&&), |
| multimap<>::operator=(multimap&&)): Add. |
| (multimap<>::swap): Adjust. |
| (swap(multimap&&, multimap& __y), |
| swap(multimap&, multimap&& __y)): Add. |
| |
| 2007-10-07 Paolo Carlini <pcarlini@suse.de> |
| |
| * include/bits/stl_algobase.h (_GLIBCXX_MOVE): Add. |
| (swap, __iter_swap): Use it. |
| * testsuite/25_algorithms/rotate/moveable.cc: Remove |
| dg-require-rvalref. |
| * testsuite/25_algorithms/remove/moveable.cc: Likewise. |
| * testsuite/25_algorithms/partition/moveable.cc: Likewise. |
| * testsuite/25_algorithms/swap_ranges/moveable.cc: Likewise. |
| * testsuite/25_algorithms/reverse/moveable.cc: Likewise. |
| * testsuite/25_algorithms/unique/moveable.cc: Likewise. |
| * testsuite/25_algorithms/remove_if/moveable.cc: Likewise. |
| |
| * include/bits/stl_algobase.h (lexicographical_compare): |
| Clean up. |
| |
| 2007-10-07 Chris Jefferson <chris@bubblescope.net> |
| Paolo Carlini <pcarlini@suse.de> |
| |
| * include/bits/stl_algo.h (remove, remove_if, unique, |
| __rotate(_RandomAccessIterator, _RandomAccessIterator, |
| _RandomAccessIterator, random_access_iterator_tag)): Use _GLIBCXX_MOVE. |
| (__rotate(_ForwardIterator, _ForwardIterator, _ForwardIterator, |
| forward_iterator_tag), __rotate(_BidirectionalIterator, |
| _BidirectionalIterator, _BidirectionalIterator, |
| bidirectional_iterator_tag), __partition(_ForwardIterator, |
| _ForwardIterator, _Predicate, forward_iterator_tag)): Use iter_swap. |
| |
| 2007-10-06 Benjamin Kosnik <bkoz@redhat.com> |
| |
| PR libstdc++/33678 |
| * libsupc++/typeinfo (typeinfo): Revert ordering of virtual components. |
| |
| 2007-10-06 Benjamin Kosnik <bkoz@redhat.com> |
| |
| PR libstdc++/33487 |
| * include/parallel/algorithmfwd.h (for_each, generate, generate_n, |
| transform, replace, replace_if, max_element, min_element, count, |
| count_if): Consistently construct overloads. |
| * include/parallel/numericfwd.h (accumulate, adjacent_difference, |
| inner_product): Same. |
| * include/parallel/algobase.h: Same. |
| * include/parallel/algo.h: Same. |
| * include/parallel/numeric: Same. |
| |
| * include/bits/algorithmfwd.h: Correct find_end placement. |
| |
| * docs/html/parallel_mode.html: Document some of the interface |
| conventions. |
| |
| * include/parallel/search.h (calc_borders): Only use operator ==. |
| |
| * include/parallel/algorithmfwd.h: Move __gnu_sequential bits to... |
| * include/parallel/tags.h: ...here, and use a using directive. |
| |
| * include/parallel/random_shuffle.h: Include stl_numeric. Qualify |
| uses of partial_num with __gnu_sequential. |
| |
| * include/parallel/tree.h: Formatting. |
| |
| 2007-10-05 Benjamin Kosnik <bkoz@redhat.com> |
| |
| Fixes for --disable-libstdcxx-pch. |
| * include/ext/rc_string_base.h: Include stl_iterator_base_funcs.h. |
| * include/ext/vstring_util.h: Include stl_iterator.h and |
| numeric_traits.h. |
| * include/tr1/functional: Include new. |
| * testsuite/util/testsuite_api.h: Include exception. |
| * testsuite/lib/libstdc++.exp (libstdc++_init): Set |
| PCH_CXXFLAGS via cxxpchflags. |
| |
| * testsuite/25_algorithms/binary_search/requirements/ |
| explicit_instantiation/2.cc: Same.: Fix includes. |
| * testsuite/25_algorithms/count_if/requirements/ |
| explicit_instantiation/2.cc: Same. |
| * testsuite/25_algorithms/equal_range/requirements/ |
| explicit_instantiation/2.cc: Same. |
| * testsuite/25_algorithms/find_end/requirements/ |
| explicit_instantiation/2.cc: Same. |
| * testsuite/25_algorithms/find_first_of/requirements/ |
| explicit_instantiation/2.cc: Same. |
| * testsuite/25_algorithms/find_if/requirements/ |
| explicit_instantiation/2.cc: Same. |
| * testsuite/25_algorithms/for_each/requirements/ |
| explicit_instantiation/2.cc: Same. |
| * testsuite/25_algorithms/includes/requirements/ |
| explicit_instantiation/2.cc: Same. |
| * testsuite/25_algorithms/inplace_merge/requirements/ |
| explicit_instantiation/2.cc: Same. |
| * testsuite/25_algorithms/lexicographical_compare/ |
| requirements/explicit_instantiation/2.cc: Same. |
| * testsuite/25_algorithms/lower_bound/requirements/ |
| explicit_instantiation/2.cc: Same. |
| * testsuite/25_algorithms/make_heap/requirements/ |
| explicit_instantiation/2.cc: Same. |
| * testsuite/25_algorithms/max_element/requirements/ |
| explicit_instantiation/2.cc: Same. |
| * testsuite/25_algorithms/max/requirements/ |
| explicit_instantiation/2.cc: Same. |
| * testsuite/25_algorithms/merge/requirements/ |
| explicit_instantiation/2.cc: Same. |
| * testsuite/25_algorithms/min_element/requirements/ |
| explicit_instantiation/2.cc: Same. |
| * testsuite/25_algorithms/min/requirements/ |
| explicit_instantiation/2.cc: Same. |
| * testsuite/25_algorithms/next_permutation/ |
| requirements/explicit_instantiation/2.cc: Same. |
| * testsuite/25_algorithms/nth_element/requirements/ |
| explicit_instantiation/2.cc: Same. |
| * testsuite/25_algorithms/partial_sort_copy/ |
| requirements/explicit_instantiation/2.cc: Same. |
| * testsuite/25_algorithms/partial_sort/requirements/ |
| explicit_instantiation/2.cc: Same. |
| * testsuite/25_algorithms/partition/requirements/ |
| explicit_instantiation/2.cc: Same. |
| * testsuite/25_algorithms/pop_heap/requirements/ |
| explicit_instantiation/2.cc: Same. |
| * testsuite/25_algorithms/prev_permutation/requirements/ |
| explicit_instantiation/2.cc: Same. |
| * testsuite/25_algorithms/push_heap/requirements/ |
| explicit_instantiation/2.cc: Same. |
| * testsuite/25_algorithms/random_shuffle/requirements/ |
| explicit_instantiation/2.cc: Same. |
| * testsuite/25_algorithms/remove_copy_if/requirements/ |
| explicit_instantiation/2.cc: Same. |
| * testsuite/25_algorithms/remove_if/requirements/ |
| explicit_instantiation/2.cc: Same. |
| * testsuite/25_algorithms/replace_copy_if/requirements/ |
| explicit_instantiation/2.cc: Same. |
| * testsuite/25_algorithms/replace_if/requirements/ |
| explicit_instantiation/2.cc: Same. |
| * testsuite/25_algorithms/search_n/requirements/ |
| explicit_instantiation/2.cc: Same. |
| * testsuite/25_algorithms/search/requirements/ |
| explicit_instantiation/2.cc: Same. |
| * testsuite/25_algorithms/set_difference/requirements/ |
| explicit_instantiation/2.cc: Same. |
| * testsuite/25_algorithms/set_intersection/requirements/ |
| explicit_instantiation/2.cc: Same. |
| * testsuite/25_algorithms/set_symmetric_difference/requirements/ |
| explicit_instantiation/2.cc: Same. |
| * testsuite/25_algorithms/set_union/requirements/ |
| explicit_instantiation/2.cc: Same. |
| * testsuite/25_algorithms/sort_heap/requirements/ |
| explicit_instantiation/2.cc: Same. |
| * testsuite/25_algorithms/sort/requirements/ |
| explicit_instantiation/2.cc: Same. |
| * testsuite/25_algorithms/stable_partition/requirements/ |
| explicit_instantiation/2.cc: Same. |
| * testsuite/25_algorithms/stable_sort/requirements/ |
| explicit_instantiation/2.cc: Same. |
| * testsuite/25_algorithms/transform/requirements/ |
| explicit_instantiation/2.cc: Same. |
| * testsuite/25_algorithms/unique_copy/requirements/ |
| explicit_instantiation/2.cc: Same. |
| * testsuite/25_algorithms/unique/requirements/ |
| explicit_instantiation/2.cc: Same. |
| * testsuite/25_algorithms/upper_bound/requirements/ |
| explicit_instantiation/2.cc: Same. |
| |
| * testsuite/25_algorithms/remove/requirements/ |
| explicit_instantiation/pod.cc: Provide a hint to the compiler. |
| |
| 2007-10-05 Paolo Carlini <pcarlini@suse.de> |
| |
| * testsuite/23_containers/map/moveable.cc: Remove dg-require-rvalref. |
| * testsuite/23_containers/multimap/moveable.cc: Likewise. |
| * testsuite/23_containers/set/moveable.cc: Likewise. |
| * testsuite/23_containers/multiset/moveable.cc: Likewise. |
| * testsuite/23_containers/deque/moveable.cc: Likewise. |
| * testsuite/23_containers/list/moveable.cc: Likewise. |
| * testsuite/23_containers/vector/moveable.cc: Likewise. |
| * include/std/utility: Use _GLIBCXX_BEGIN_NAMESPACE. |
| |
| 2007-10-05 Paolo Carlini <pcarlini@suse.de> |
| Chris Jefferson <chris@bubblescope.net> |
| |
| * include/bits/stl_iterator.h (class move_iterator, |
| make_move_iterator): Add. |
| |
| 2007-10-04 Doug Kwan <dougkwan@google.com> |
| |
| * include/ext/concurrent.h (class __mutex, |
| class __recursive_mutex): Add new method gthread_mutex to access |
| inner gthread mutex. |
| [__GTHREAD_HAS_COND] (class __concurrence_broadcast_error, |
| class __concurrence_wait_error, class __cond): Add. |
| * libsupc++/guard.cc (recursive_push, recursive_pop): Delete. |
| (init_in_progress_flag, set_init_in_progress_flag): Add to |
| replace recursive_push and recursive_pop. |
| (throw_recursive_init_exception): Add. |
| (acquire, __cxa_guard_acquire, __cxa_guard_abort and |
| __cxa_guard_release): [__GTHREAD_HAS_COND] Use a conditional |
| for synchronization of static variable initialization. |
| The global mutex is only held briefly when guards are |
| accessed. [!__GTHREAD_HAS_COND] Fall back to the old code, |
| which deadlocks. |
| * testsuite/thread/guard.cc: Add new test. It deadlocks with the |
| old locking code in libstdc++-v3/libsup++/guard.cc. |
| |
| 2007-10-04 Paolo Carlini <pcarlini@suse.de> |
| |
| * testsuite/23_containers/vector/requirements/dr438/assign_neg.cc: |
| Adjust dg-error line number. |
| * testsuite/23_containers/vector/requirements/dr438/insert_neg.cc: |
| Likewise. |
| * testsuite/23_containers/vector/requirements/dr438/ |
| constructor_1_neg.cc: Likewise. |
| * testsuite/23_containers/vector/requirements/dr438/ |
| constructor_2_neg.cc: Likewise. |
| * testsuite/23_containers/deque/requirements/dr438/assign_neg.cc: |
| Adjust dg-error line number. |
| * testsuite/23_containers/deque/requirements/dr438/insert_neg.cc: |
| Likewise. |
| * testsuite/23_containers/deque/requirements/dr438/ |
| constructor_1_neg.cc: Likewise. |
| * testsuite/23_containers/deque/requirements/dr438/ |
| constructor_2_neg.cc: Likewise. |
| * testsuite/23_containers/list/requirements/dr438/assign_neg.cc: |
| Adjust dg-error line number. |
| * testsuite/23_containers/list/requirements/dr438/insert_neg.cc: |
| Likewise. |
| * testsuite/23_containers/list/requirements/dr438/ |
| constructor_1_neg.cc: Likewise. |
| * testsuite/23_containers/list/requirements/dr438/ |
| constructor_2_neg.cc: Likewise. |
| |
| 2007-10-04 Chris Jefferson <chris@bubblescope.net> |
| Paolo Carlini <pcarlini@suse.de> |
| |
| * include/bits/stl_list.h (list<>::list(list&&), |
| list<>::operator=(list&&)): Add. |
| (list<>::swap): Adjust. |
| (swap(list&&, list& __y), swap(list&, list&& __y)): Add. |
| * include/bits/stl_vector.h (vector<>::vector(vector&&), |
| vector<>::operator=(vector&&)): Add. |
| (vector<>::swap): Adjust. |
| (swap(vector&&, vector& __y), swap(vector&, vector&& __y)): Add. |
| * include/bits/stl_bvector.h (vector<>::vector(vector&&), |
| vector<>::operator=(vector&&)): Add. |
| (vector<>::swap): Adjust. |
| * include/bits/stl_deque.h (deque<>::deque(deque&&), |
| deque<>::operator=(deque&&)): Add. |
| (deque<>::swap): Adjust. |
| (swap(deque&&, deque& __y), swap(deque&, deque&& __y)): Add. |
| * include/bits/stl_set.h (set<>::set(set&&), |
| set<>::operator=(set&&)): Add. |
| (set<>::swap): Adjust. |
| (swap(set&&, set& __y), swap(set&, set&& __y)): Add. |
| * include/bits/stl_map.h (map<>::map(map&&), |
| map<>::operator=(map&&)): Add. |
| (map<>::swap): Adjust. |
| (swap(map&&, map& __y), swap(map&, map&& __y)): Add. |
| * include/bits/stl_multiset.h (multiset<>::multiset(multiset&&), |
| multiset<>::operator=(multiset&&)): Add. |
| (smultiet<>::swap): Adjust. |
| (swap(multiset&&, multiset& __y), |
| swap(multiset&, multiset&& __y)): Add. |
| * include/bits/stl_multimap.h (multimap<>::multimap(multimap&&), |
| multimap<>::operator=(multimap&&)): Add. |
| (multimap<>::swap): Adjust. |
| (swap(multimap&&, multimap& __y), |
| swap(multimap&, multimap&& __y)): Add. |
| |
| 2007-10-04 Paolo Carlini <pcarlini@suse.de> |
| |
| Avoid copying some allocator objects. |
| * include/bits/stl_list.h (_List_impl::_List_impl(), |
| _List_base::_List_base(), list<>::list()): Add. |
| * include/bits/stl_vector.h (_Vector_impl::_Vector_impl(), |
| _Vector_base::_Vector_base(), vector<>::vector()): Add. |
| * include/bits/stl_bvector.h (_Bvector_impl::_Bvector_impl(), |
| _Bvector_base::_Bvector_base(), vector<>::vector()): Add. |
| * include/bits/stl_deque.h (_Deque_impl::_Deque_impl(), |
| _Deque_base::_Deque_base(), deque<>::deque()): Add. |
| * include/bits/stl_tree.h (_Rb_tree_impl<>::_Rb_tree_impl(), |
| _Rb_tree_impl<>::_M_initialize): Add. |
| (_Rb_tree<>::_Rb_tree(const _Compare&, const allocator_type&), |
| _Rb_tree(const _Rb_tree&)): Adjust. |
| * include/bits/stl_set.h (set<>::set(), |
| set(_InputIterator, _InputIterator)): Use _M_t default constructor. |
| * include/bits/stl_map.h (map<>::map(), set(_InputIterator, |
| _InputIterator)): Use _M_t default constructor. |
| * include/bits/stl_multiset.h (multiset<>::multiset(), |
| multiset(_InputIterator, _InputIterator)): Use _M_t default |
| constructor. |
| * include/bits/stl_multimap.h (multimap<>::multimap(), |
| multimap(_InputIterator, _InputIterator)): Use _M_t default |
| constructor. |
| |
| 2007-10-03 Chris Jefferson <chris@bubblescope.net> |
| Benjamin Kosnik <bkoz@redhat.com> |
| |
| * testsuite/20_util/pair/moveable.cc: New. Merge from |
| libstdcxx_so_7-branch. |
| * testsuite/23_containers/deque/capacity/moveable.cc: Same. |
| * testsuite/23_containers/deque/cons/moveable.cc: Same. |
| * testsuite/23_containers/deque/modifiers/moveable.cc: Same. |
| * testsuite/23_containers/deque/moveable.cc: Same. |
| * testsuite/23_containers/list/moveable.cc: Same. |
| * testsuite/23_containers/map/moveable.cc: Same. |
| * testsuite/23_containers/multimap/moveable.cc: Same. |
| * testsuite/23_containers/multiset/moveable.cc: Same. |
| * testsuite/23_containers/set/moveable.cc: Same. |
| * testsuite/23_containers/vector/cons/moveable.cc: Same. |
| * testsuite/23_containers/vector/modifiers/moveable.cc: Same. |
| * testsuite/23_containers/vector/moveable.cc: Same. |
| * testsuite/23_containers/vector/resize/moveable.cc: Same. |
| * testsuite/25_algorithms/heap/moveable.cc: Same. |
| * testsuite/25_algorithms/nth_element/moveable.cc: Same. |
| * testsuite/25_algorithms/partial_sort/moveable.cc: Same. |
| * testsuite/25_algorithms/partition/moveable.cc: Same. |
| * testsuite/25_algorithms/remove_if/moveable.cc: Same. |
| * testsuite/25_algorithms/remove/moveable.cc: Same. |
| * testsuite/25_algorithms/reverse/moveable.cc: Same. |
| * testsuite/25_algorithms/rotate/moveable.cc: Same. |
| * testsuite/25_algorithms/sort/moveable.cc: Same. |
| * testsuite/25_algorithms/swap_ranges/moveable.cc: Same. |
| * testsuite/25_algorithms/unique/moveable.cc: Same. |
| * testsuite/util/testsuite_rvalref.h: New. |
| |
| * testsuite/25_algorithms/equal/equal.cc: Move to... |
| * testsuite/25_algorithms/equal/no_operator_ne.cc: ...this. |
| * testsuite/25_algorithms/heap/heap.cc: Move to... |
| * testsuite/25_algorithms/heap/1.cc: ...this. |
| * testsuite/25_algorithms/lower_bound/lower_bound.cc: Move to... |
| * testsuite/25_algorithms/lower_bound/no_operator_ne.cc: ...this. |
| * testsuite/25_algorithms/partition/partition.cc: Move to... |
| * testsuite/25_algorithms/partition/1.cc: ...this. |
| * testsuite/25_algorithms/stable_partition/1.cc: ... and this. |
| |
| * testsuite/25_algorithms/search/1.cc: Update from merge. |
| * testsuite/25_algorithms/search/check_type.cc: Same. |
| |
| * testsuite/lib/dg-options.exp (dg-require-rvalref): New. |
| * testsuite/lib/libstdc++.exp (check_v3_target_rvalref): New. |
| |
| 2007-10-03 Richard Sandiford <richard@codesourcery.com> |
| |
| * acinclude.m4 (GLIBCXX_ENABLE_C99): Temporarily add |
| -fno-exceptions to CXXFLAGS. Use GCC_TRY_COMPILE_OR_LINK. |
| Make the tests assign results to volatile variables. Use -lm |
| for link tests in GCC_TRY_COMPILE_OR_LINK. Fall back to |
| compile-only tests if -lm is not available. |
| * configure: Regenerate. |
| |
| 2007-10-03 Paolo Carlini <pcarlini@suse.de> |
| |
| PR libstdc++/33613 |
| * include/debug/functions.h (__check_partitioned): Rename to... |
| (__check_partioned_lower): ... this. |
| (__check_partioned_upper): Add. |
| * include/debug/macros.h (__glibcxx_check_partitioned): Rename to... |
| (__glibcxx_check_partitioned_lower): ... this, adjust. |
| (__glibcxx_check_partitioned_upper): Add. |
| * include/debug/debug.h (__glibcxx_requires_partitioned): Rename to... |
| (__glibcxx_requires_partitioned_lower): ... this, adjust. |
| (__glibcxx_requires_partitioned_upper): Add. |
| * include/bits/stl_algo.h (lower_bound, upper_bound, equal_range, |
| binary search): Use the above. |
| * testsuite/25_algorithms/lower_bound/33613.cc: New. |
| * testsuite/25_algorithms/upper_bound/33613.cc: Likewise. |
| |
| 2007-10-03 Kazu Hirata <kazu@codesourcery.com> |
| |
| Revert: |
| 2007-10-02 Richard Sandiford <richard@codesourcery.com> |
| * acinclude.m4 (GLIBCXX_ENABLE_C99): Temporarily add |
| -fno-exceptions to CXXFLAGS. Use GCC_TRY_COMPILE_OR_LINK. |
| Make the tests assign results to volatile variables. |
| * configure: Regenerate. |
| |
| 2007-10-02 Richard Sandiford <richard@codesourcery.com> |
| |
| * acinclude.m4 (GLIBCXX_ENABLE_C99): Temporarily add |
| -fno-exceptions to CXXFLAGS. Use GCC_TRY_COMPILE_OR_LINK. |
| Make the tests assign results to volatile variables. |
| * configure: Regenerate. |
| |
| 2007-10-02 Benjamin Kosnik <bkoz@redhat.com> |
| |
| * testsuite/25_algorithms/binary_search/2.cc: Split into... |
| * testsuite/25_algorithms/upper_bound/2.cc: ... this. |
| * testsuite/25_algorithms/lower_bound/2.cc: ... this. |
| * testsuite/25_algorithms/equal_range/2.cc: ... and this. |
| |
| 2007-10-02 Chris Jefferson <chris@bubblescope.net> |
| |
| * testsuite/25_algorithms/search/1.cc: Merge from |
| libstdcxx_so_7-branch. |
| * testsuite/25_algorithms/search/check_type.cc: Same. |
| * testsuite/25_algorithms/sort/vectorbool.cc: Same. |
| |
| 2007-09-30 Jonathan Wakely <jwakely.gcc@gmail.com> |
| |
| * src/valarray-inst.cc, include/ext/atomicity.h, |
| include/ext/concurrence.h, include/bits/basic_string.h, |
| include/bits/fstream.tcc, include/ext/vstring.h: Fix comment typos. |
| |
| 2007-09-29 Jonathan Wakely <jwakely.gcc@gmail.com> |
| |
| * docs/html/test.html, docs/html/ext/mt_allocator.html, |
| docs/html/ext/tr1.html, docs/html/17_intro/contribute.html, |
| docs/html/documentation.html, docs/html/20_util/allocator.html: |
| Update docs to refer to Subversion not CVS. Fix markup. |
| |
| 2007-09-29 Jonathan Wakely <jwakely.gcc@gmail.com> |
| |
| * docs/html/Makefile: Follow up to libstdc++/14991, remove target. |
| |
| 2007-09-28 Benjamin Kosnik <bkoz@redhat.com> |
| |
| * include/parallel/algorithmfwd.h: Spacing. |
| * include/parallel/tags.h: Correct comment. |
| |
| * testsuite/Makefile.am (AM_MAKEFLAGS, AM_RUNTESTFLAGS): Remove. |
| * testsuite/Makefile.in: Regenerate. |
| |
| 2007-09-27 Benjamin Kosnik <bkoz@redhat.com> |
| |
| * testsuite/util/testsuite_hooks.cc (set_memory_limits): Adjust |
| x86_64 virtual memory setting for libgomp. |
| |
| 2007-09-26 Benjamin Kosnik <bkoz@redhat.com> |
| |
| * include/bits/stl_algo.h: Add return type information to comments. |
| * include/bits/algorithmfwd.h: Formatting. |
| * testsuite/util/testsuite_hooks.h (NonDefaultConstructible): Move.. |
| * testsuite/util/testsuite_api.h: ...here. Add necessary operators |
| for use in testing chapters 25 and 26. |
| * testsuite/util/testsuite_character.h: Same. |
| |
| * testsuite/25_algorithms/*/requirements/explicit_instantiation/ |
| 2.cc, pod.cc: New. |
| |
| * testsuite/26_numerics/accumulate, adjacent_difference, inner_product, |
| partial_sum/requirements/explicit_instantiation/2.cc, pod.cc: New. |
| |
| * testsuite/26_numerics/numeric_arrays/*: Move contents into |
| testsuite/26_numerics. |
| |
| * testsuite/26_numerics/numeric_operations: Same. |
| |
| * testsuite/23_containers/*/requirements/explicit_instantiation/2.cc: |
| Adjust includes from testsuite_eh.h to testsuite_api.h. |
| |
| 2007-09-25 Richard Sandiford <rsandifo@nildram.co.uk> |
| |
| * testsuite/lib/libstdc++.exp (check_v3_target_fileio): Test lseek. |
| |
| 2007-09-18 Benjamin Kosnik <bkoz@redhat.com> |
| Chalathip Thumkanon <chalathip@gmail.com> |
| |
| PR libstdc++/32819 |
| PR libstdc++/32822 |
| * docs/html/ext/pb_ds/hash_based_containers.html: Correct. |
| |
| 2007-09-17 Benjamin Kosnik <bkoz@redhat.com> |
| |
| * configure.host: Set atomic_flags on i486. |
| |
| * include/Makefile.am: Remove parallel-mode pch. |
| * include/Makefile.in: Regenerate. |
| |
| * testsuite/lib/libstdc++.exp: Set ld_library_flags for libgomp if |
| present. |
| |
| * acinclude.m4 (GLIBCXX_ENABLE_PARALLEL): Comment. |
| * configure: Regenerate. |
| |
| 2007-09-17 Johannes Singler <singler@ira.uka.de> |
| |
| * include/parallel/for_each.h: Fixed comment/doxygen markup typos. |
| * include/parallel/base.h: Same. |
| * include/parallel/numeric: Same. |
| * include/parallel/quicksort.h: Same. |
| * include/parallel/compiletime_settings.h: Same. |
| * include/parallel/random_shuffle.h: Same. |
| * include/parallel/balanced_quicksort.h: Same. |
| * include/parallel/tree.h: Same. |
| * include/parallel/settings.h: Same. |
| * include/parallel/search.h: Same. |
| * include/parallel/partition.h: Same. |
| * include/parallel/partial_sum.h: Same. |
| |
| 2007-09-17 Paolo Carlini <pcarlini@suse.de> |
| |
| * include/tr1_impl/type_traitsfwd.h (aligned_storage): Remove |
| declaration. |
| * include/tr1_impl/type_traits (aligned_storage): Remove. |
| * include/std/type_traits (aligned_storage, __aligned_storage_msa): |
| Add. |
| * include/tr1/type_traits (aligned_storage): Add. |
| * testsuite/20_util/aligned_storage/value.cc: New. |
| * testsuite/20_util/aligned_storage/requirements/ |
| explicit_instantiation.cc: Likewise. |
| * testsuite/20_util/make_signed/requirements/typedefs_neg.cc: Adjust |
| dg-error lines. |
| * testsuite/20_util/make_unsigned/requirements/typedefs_neg.cc: |
| Likewise. |
| |
| 2007-09-16 Paolo Carlini <pcarlini@suse.de> |
| Douglas Gregor <doug.gregor@gmail.com> |
| |
| * include/tr1_impl/type_traits (aligned_storage): Implement |
| in the neat and general way. |
| |
| 2007-09-14 Benjamin Kosnik <bkoz@redhat.com> |
| |
| * include/parallel/base.h (__gnu_parallel::less<Tp>): Add partial |
| specialization for one argument. |
| (__gnu_parallel::less): Add operator. |
| |
| * include/parallel/multiway_merge.h: Use __builtin_alloca. |
| * include/parallel/partial_sum.h: Same. |
| * include/parallel/find.h: Same. |
| |
| 2007-09-14 Jonathan Wakely <jwakely.gcc@gmail.com> |
| |
| * include/tr1_impl/boost_shared_ptr.h: (__weak_ptr::lock()): Add |
| missing template argument. |
| * testsuite/tr1/2_general_utilities/shared_ptr/requirements/ |
| explicit_instantiation/2.cc: New. |
| * testsuite/tr1/2_general_utilities/weak_ptr/requirements/ |
| explicit_instantiation/2.cc: New. |
| |
| 2007-09-14 Benjamin Kosnik <bkoz@redhat.com> |
| |
| * testsuite/17_intro/headers/all_pedantic_errors.cc: New. |
| * include/tr1_impl/cinttypes: Add pragma GCC system_header. |
| * include/tr1_impl/cfenv: Same. |
| * include/tr1_impl/cstdint: Same. |
| * include/tr1/cstdbool: Same. |
| * include/ext/pb_ds/detail/resize_policy/ |
| hash_prime_size_policy_imp.hpp: Same. |
| * include/parallel/partial_sum.h: Avoid VLA error with |
| __builtin_alloca. |
| |
| 2007-09-14 Thiemo Seufer <ths@mips.com> |
| |
| * crossconfig.m4 (mips*-sde-elf*): New stanza. |
| * configure: Regenerate. |
| |
| 2007-09-12 Benjamin Kosnik <bkoz@redhat.com> |
| |
| * include/ext/pb_ds/*: Change namespace pb_ds to __gnu_pbds. |
| * docs/html/ext/pb_ds/*: Same. |
| * testsuite/ext/pb_ds/*: Same. |
| * testsuite/performance/ext/pb_ds/*: Same. |
| * testsuite/util/*: Same. |
| |
| 2007-09-12 Benjamin Kosnik <bkoz@redhat.com> |
| |
| * include/parallel/find.h: Doxygen fixups. |
| * include/bits/hashtable.h: Same. |
| |
| 2007-09-11 Johannes Singler <singler@ira.uka.de> |
| Leonor Frias Moya <lfrias@lsi.upc.edu> |
| Felix Putze <kontakt@felix-putze.de> |
| Marius Elvert <marius.elvert@ira.uka.de> |
| Felix Bondarenko <f.bondarenko@web.de> |
| Robert Geisberger <robert.geisberger@stud.uni-karlsruhe.de> |
| Robin Dapp <r.dapp@freenet.de> |
| Benjamin Kosnik <bkoz@redhat.com> |
| |
| Add parallel mode. |
| * include/parallel: New. |
| * include/parallel/iterator.h: New. |
| * include/parallel/multiway_merge.h: New. |
| * include/parallel/parallel.h: New. |
| * include/parallel/algorithm |
| * include/parallel/find_selectors.h: New. |
| * include/parallel/losertree.h: New. |
| * include/parallel/list_partition.h: New. |
| * include/parallel/types.h: New. |
| * include/parallel/for_each.h: New. |
| * include/parallel/multiseq_selection.h: New. |
| * include/parallel/workstealing.h: New. |
| * include/parallel/base.h: New. |
| * include/parallel/par_loop.h: New. |
| * include/parallel/numeric |
| * include/parallel/features.h: New. |
| * include/parallel/quicksort.h: New. |
| * include/parallel/algorithmfwd.h: New. |
| * include/parallel/equally_split.h: New. |
| * include/parallel/compiletime_settings.h: New. |
| * include/parallel/for_each_selectors.h: New. |
| * include/parallel/basic_iterator.h: New. |
| * include/parallel/omp_loop_static.h: New. |
| * include/parallel/random_shuffle.h: New. |
| * include/parallel/balanced_quicksort.h: New. |
| * include/parallel/set_operations.h: New. |
| * include/parallel/tags.h: New. |
| * include/parallel/merge.h: New. |
| * include/parallel/tree.h: New. |
| * include/parallel/settings.h: New. |
| * include/parallel/unique_copy.h: New. |
| * include/parallel/multiway_mergesort.h: New. |
| * include/parallel/numericfwd.h: New. |
| * include/parallel/search.h: New. |
| * include/parallel/partition.h: New. |
| * include/parallel/compatibility.h: New. |
| * include/parallel/algobase.h: New. |
| * include/parallel/find.h: New. |
| * include/parallel/partial_sum.h: New. |
| * include/parallel/algo.h: New. |
| * include/parallel/omp_loop.h: New. |
| * include/parallel/queue.h: New. |
| * include/parallel/timing.h: New. |
| * include/parallel/sort.h: New. |
| * include/parallel/checkers.h: New. |
| * include/parallel/random_number.h: New. |
| * include/bits/algorithmfwd.h: New. |
| |
| * acinclude.m4 (GLIBCXX_ENABLE_PARALLEL): New. |
| * configure.host: Add atomic_flags. |
| * configure.ac: Export ATOMIC_FLAGS, call GLIBCXX_ENABLE_PARALLEL. |
| * src/Makefile.am: Add parallel_list rules. |
| * include/Makefile.am: Add parallel files. |
| * testsuite/Makefile.am (check-parallel): Add. |
| (check-performance-parallel): Add. |
| * config.h.in: Regenerate. |
| * configure: Same. |
| * libsupc++/Makefile.in: Same. |
| * testsuite/Makefile.in: Same. |
| * Makefile.in: Same. |
| * libmath/Makefile.in: Same. |
| * include/Makefile.in: Same. |
| * src/Makefile.in: Same. |
| * po/Makefile.in: Same. |
| |
| * config/abi/pre/gnu.ver: Export parallel list bits. |
| |
| * docs/html/parallel_mode.html: New. |
| * docs/html/documentation.html: Add link. |
| * docs/doxygen/user.cfg.in: Adjust for new files and directory. |
| * docs/doxygen/doxygroups.cc: Adjust namespace markup. |
| |
| * include/debug/set.h: Adjust for _GLIBCXX_STD_D or _P change. |
| * include/debug/bitset: Same. |
| * include/debug/multiset.h: Same. |
| * include/debug/vector: Same. |
| * include/debug/map.h: Same. |
| * include/debug/deque: Same. |
| * include/debug/list: Same. |
| * include/debug/debug.h: Same. |
| * include/debug/multimap.h: Same. |
| * include/std/algorithm: Same. |
| * include/std/numeric: Same. |
| * include/std/bitset: Same. |
| * include/std/string: Same. |
| * include/ext/hash_map: Same. |
| * include/ext/hash_set: Same. |
| * include/bits/stl_list.h: Same. |
| * include/bits/stl_map.h: Same. |
| * include/bits/stl_algobase.h: Same. |
| * include/bits/stl_set.h: Same. |
| * include/bits/stl_multimap.h: Same. |
| * include/bits/stl_vector.h: Same. |
| * include/bits/stl_numeric.h: Same. |
| * include/bits/stl_deque.h: Same. |
| * include/bits/stl_multiset.h: Same. |
| * include/bits/char_traits.h: Same. |
| * include/bits/stl_algo.h: Same. |
| * include/bits/c++config: Same. |
| * include/bits/vector.tcc: Same. |
| * include/bits/deque.tcc: Same. |
| * include/bits/stl_bvector.h: Same. |
| * include/bits/list.tcc: Same. |
| * src/list.cc: Same. |
| * src/parallel_list.cc: New. |
| |
| * testsuite/lib/libstdc++.exp (check_v3_target_parallel_mode): New. |
| * testsuite/lib/dg-options.exp (dg-require-parallel-mode): New. |
| * scripts/testsuite_flags.in (--cxxparallelflags): New. |
| * scripts/check_performance: Adjust. |
| * testsuite/25_algorithms/headers/parallel_algorithm.cc: New. |
| * testsuite/25_algorithms/headers/algorithm_parallel_mode.cc: New. |
| * testsuite/25_algorithms/headers/parallel_algorithm_mixed1.cc: New. |
| * testsuite/25_algorithms/headers/parallel_algorithm_mixed2.cc: New. |
| * testsuite/26_numerics/headers/numeric/parallel_numeric.cc: New. |
| * testsuite/26_numerics/headers/numeric/numeric_parallel_mode.cc: New. |
| * testsuite/26_numerics/headers/numeric/ |
| parallel_numeric_mixed1.cc: New. |
| * testsuite/26_numerics/headers/numeric/ |
| parallel_numeric_mixed2.cc: New. |
| |
| 2007-09-11 Daniel Jacobowitz <dan@codesourcery.com> |
| |
| * testsuite/lib/libstdc++.exp (libstdc++_init): Revert part of |
| 2007-09-06 change. |
| |
| 2007-09-09 Roger Sayle <roger@eyesopen.com> |
| |
| * acinclude.m4 (GLIBCXX_CHECK_SYSTEM_ERROR): Add ECANCELED for cygwin. |
| * configure: Regenerate. |
| * config/os/generic/error_constants.h: Guard. |
| * testsuite/19_diagnostics/headers/system_error/ |
| types_std_c++0x.cc: Same. |
| |
| 2007-09-09 Benjamin Kosnik <bkoz@redhat.com> |
| |
| * testsuite/25_algorithms/binary_search.cc: Move... |
| * testsuite/25_algorithms/binary_search/2.cc: ...here. |
| |
| * testsuite/25_algorithms/sort.cc: Move... |
| * testsuite/25_algorithms/sort/1.cc: ...here. |
| * testsuite/25_algorithms/partial_sort_copy/2.cc: ...here. |
| * testsuite/25_algorithms/nth_element/3.cc: ...here. |
| * testsuite/25_algorithms/partial_sort/2.cc: ...here. |
| * testsuite/25_algorithms/stable_sort/2.cc: ...here. |
| |
| * testsuite/25_algorithms/min_max.cc: Move... |
| * testsuite/25_algorithms/min/1.cc: ...here. |
| * testsuite/25_algorithms/min/2.cc: ...here. |
| * testsuite/25_algorithms/max/1.cc: ...here. |
| * testsuite/25_algorithms/max/2.cc: ...here. |
| |
| 2007-09-09 Joseph Myers <joseph@codesourcery.com> |
| |
| * testsuite/lib/libstdc++.exp (v3-build-support): Specify output |
| file for preprocessing. Use remote_exec to call ar and ranlib. |
| |
| 2007-09-08 Benjamin Kosnik <bkoz@redhat.com> |
| |
| * include/bits/functional_hash.h: Add ext/numeric_traits.h. |
| * include/tr1/functional_hash.h Same. |
| * include/tr1/functional: Remove string, ext/type_traits.h includes. |
| * include/tr1_impl/functional_hash.h: Move string, wstring |
| definitions for std::<hash>::operator into separate file. |
| * include/std/functional |
| * src/hash.cc: New, move definitions here. |
| * src/hash_c++0x.cc: Same. |
| * src/Makefile.am: Add new source files. |
| * configure: Regenerate. |
| * Makefile.in: Same. |
| * src/Makefile.in: Same. |
| * po/Makefile.in: Same. |
| * libmath/Makefile.in: Same. |
| * libsupc++/Makefile.in: Same. |
| * testsuite/Makefile.in: Same. |
| * config/abi/pre/gnu.ver: Add symbols. |
| * config/abi/pre/gnu-versioned-namespace.ver: Same, fix. |
| |
| 2007-09-07 Benjamin Kosnik <bkoz@redhat.com> |
| |
| * testsuite/19_diagnostics/error_category/cons/copy_neg.cc: |
| Correct line number. |
| |
| 2007-09-07 Danny Smith <dannysmith@users.sourceforge.net> |
| |
| PR libstdc++/33203 |
| * configure.host (error_constants_dir): New variable, |
| defaulting to os/generic. |
| ( mingw32*): Overide default. |
| * configure.ac (ERROR_CONSTANTS_SRCDIR): New. |
| * configure: Regenerate. |
| * include/Makefile.am (host_headers): Add |
| $(ERROR_CONSTANTS_SRCDIR)/error_constants.h . |
| * include/Makefile.in: Regenerate. |
| * include/std/system_error (enum posix_errno): Remove. |
| Include <bits/error_constants.h> instead. |
| * config/os/mingw32/error_constants.h: New. |
| * config/os/generic/error_constants.h: New. |
| |
| 2007-09-06 Benjamin Kosnik <bkoz@redhat.com> |
| |
| * testsuite/lib/libstdc++.exp: Check CXXFLAGS. |
| * scripts/testsuite_flags.in: CXXFLAGS_default, matching dejagnu. |
| |
| * include/std/ostream: Spacing tweak. |
| * include/ext/hashtable.h: Use <algorithm>. |
| * include/ext/slist: Same. |
| * include/ext/rope: Same. |
| * include/bits/stl_function.h: Format. |
| * include/tr1_impl/array: Remove section number in doxygen markup. |
| * src/list.cc: Comment tweak. |
| |
| * docs/doxygen/user.cfg.in: Update for include/tr1_impl. |
| |
| * testsuite/25_algorithms/search_n/iterator.cc: Add using declaration. |
| * testsuite/25_algorithms/nth_element/1.cc: Same. |
| * testsuite/21_strings/char_traits/requirements/short/1.cc: Use |
| char_type typedef to the underlying character type. |
| * testsuite/21_strings/char_traits/requirements/wchar_t/typedefs.cc: |
| Remove -ansi -pedantic-errors. |
| * testsuite/21_strings/char_traits/requirements/char/typedefs.cc: Same. |
| * testsuite/tr1/6_containers/headers/functional/synopsis.cc: |
| Remove specializations. |
| |
| 2007-09-06 Paolo Carlini <pcarlini@suse.de> |
| |
| * include/bits/stl_vector.h (_Vector_base<>::_M_allocate): |
| Do not call _M_impl.allocate when __n == 0. |
| * testsuite/23_containers/vector/zero_sized_allocations.cc: New. |
| |
| 2007-09-06 Benjamin Kosnik <bkoz@redhat.com> |
| |
| PR libstdc++/29367 |
| * include/ext/pb_ds/detail/map_debug_base.hpp: From this.. |
| * include/ext/pb_ds/detail/debug_map_base.hpp: ...to this. |
| Rename map_debug_base to debug_map_base, add std::pair output |
| extractors, change duplicate map_debug_base typedef in containers |
| to debug_base. Use m_store_extra_indicator for m_store_hash_indicator. |
| * include/ext/pb_ds/*: Likewise. |
| * include/Makefile.am: Same. |
| * include/Makefile.in: Regenerate. |
| |
| 2007-09-06 Matthias Klose <doko@debian.org> |
| |
| * testsuite/27_io/headers/cstdlib: Remove empty directory. |
| |
| 2007-09-05 Roger Sayle <roger@eyesopen.com> |
| |
| * acinclude.m4 (GLIBCXX_CHECK_SYSTEM_ERROR): Add EBADMSG for darwin. |
| * configure: Regenerate. |
| * include/std/system_error: Guard. |
| * testsuite/19_diagnostics/headers/system_error/ |
| types_std_c++0x.cc: Same. |
| * testsuite/19_diagnostics/error_category/cons/copy_neg.cc: Adjust |
| line numbers. |
| |
| 2007-09-03 Paolo Carlini <pcarlini@suse.de> |
| |
| PR libstdc++/33293 |
| * include/bits/stl_numeric.h (accumulate, inner_product): |
| Add inline function-specifier. |
| |
| 2007-08-31 Douglas Gregor <doug.gregor@gmail.com> |
| |
| * testsuite/abi/demangle/cxx0x/rref.cc: New. |
| |
| 2007-08-29 Benjamin Kosnik <bkoz@redhat.com> |
| |
| * acinclude.m4 (GLIBCXX_CHECK_SYSTEM_ERROR): Add ENODATA, ENOSR, |
| ENOSTR, ETIME for freebsd. |
| * configure: Regenerate. |
| * include/std/system_error: Guard. |
| * testsuite/19_diagnostics/headers/system_error/ |
| types_std_c++0x.cc: Same. |
| * testsuite/19_diagnostics/error_category/cons/copy_neg.cc: Adjust |
| line numbers. |
| |
| 2007-08-28 Paolo Carlini <pcarlini@suse.de> |
| |
| PR libstdc++/33128 |
| * include/tr1_impl/random (uniform_int<>::_M_call): Deal with |
| __urng() returning negative values. |
| * testsuite/tr1/5_numerical_facilities/random/uniform_int/33128.cc: |
| New. |
| |
| 2007-08-24 Benjamin Kosnik <bkoz@redhat.com> |
| |
| * acinclude.m4: Fix duplicate variable names. |
| * configure: Regenerate. |
| |
| 2007-08-24 Benjamin Kosnik <bkoz@redhat.com> |
| |
| * acinclude.m4 (GLIBCXX_CHECK_SYSTEM_ERROR): Add ENOLINK, EPROTO |
| for netbsd. |
| * configure: Regenerate. |
| * include/std/system_error: Guard. |
| * testsuite/19_diagnostics/headers/system_error/ |
| types_std_c++0x.cc: Same. |
| * testsuite/19_diagnostics/error_category/cons/copy_neg.cc: Adjust |
| line numbers. |
| |
| 2007-08-23 Benjamin Kosnik <bkoz@redhat.com> |
| |
| * include/std/system_error: New file. |
| * src/system_error.cc: New file. |
| * src/Makefile.am (sources): Add. |
| * src/Makefile.in: Regenerate. |
| * include/Makefile.am (std_headers): Add system_error. |
| * include/Makefile.in: Regenerate. |
| * acinclude.m4 (GLIBCXX_CHECK_SYSTEM_ERROR): New. |
| * configure.ac: Call it. |
| * config.h.in: Regenerate. |
| * include/bits/functional_hash.h: Add hash<error_code>. |
| * include/std/ostream: Add inserters for error_code. |
| |
| * docs/doxygen/user.cfg.in: Add system_error. |
| |
| * config/abi/pre/gnu.ver(GLIBCXX_3.4.10): Add new symbols. |
| |
| * testsuite/19_diagnostics/error_code: New. |
| * testsuite/19_diagnostics/error_code/cons: Same. |
| * testsuite/19_diagnostics/error_code/cons/1.cc: Same. |
| * testsuite/19_diagnostics/error_code/operators: Same. |
| * testsuite/19_diagnostics/error_code/operators/bool.cc: Same. |
| * testsuite/19_diagnostics/error_code/operators/bool_neg.cc: Same. |
| * testsuite/19_diagnostics/error_code/operators/equal.cc: Same. |
| * testsuite/19_diagnostics/error_code/operators/not_equal.cc: Same. |
| * testsuite/19_diagnostics/error_category: Same. |
| * testsuite/19_diagnostics/error_category/cons: Same. |
| * testsuite/19_diagnostics/error_category/cons/copy_neg.cc: Same. |
| * testsuite/19_diagnostics/error_category/cons/default.cc: Same. |
| * testsuite/19_diagnostics/error_category/operators: Same. |
| * testsuite/19_diagnostics/error_category/operators/equal.cc: Same. |
| * testsuite/19_diagnostics/error_category/operators/not_equal.cc: Same. |
| * testsuite/19_diagnostics/headers/system_error: Same. |
| * testsuite/19_diagnostics/headers/system_error/ |
| types_std_c++0x.cc: Same. |
| * testsuite/19_diagnostics/headers/system_error/std_c++0x_neg.cc: Same. |
| * testsuite/19_diagnostics/system_error: Same. |
| * testsuite/19_diagnostics/system_error/ |
| cons_virtual_derivation.cc: Same. |
| * testsuite/19_diagnostics/system_error/cons-1.cc: Same. |
| * testsuite/19_diagnostics/system_error/what-1.cc: Same. |
| * testsuite/19_diagnostics/system_error/what-2.cc: Same. |
| * testsuite/19_diagnostics/system_error/what-big.cc: Same. |
| * testsuite/19_diagnostics/system_error/what-3.cc: Same. |
| * testsuite/19_diagnostics/system_error/what-4.cc: Same. |
| * testsuite/27_io/basic_ostream/inserters_other/wchar_t/ |
| error_code.cc: Same. |
| * testsuite/27_io/basic_ostream/inserters_other/char/ |
| error_code.cc: Same. |
| * testsuite/tr1/6_containers/hash/operators: New. |
| * testsuite/tr1/6_containers/hash/operators/size_t.cc: Same. |
| |
| * testsuite/23_containers/hash: Move... |
| * testsuite/20_util/hash: ... here. |
| * testsuite/20_util/hash/operators: New. |
| * testsuite/20_util/hash/operators/size_t.cc: New. |
| |
| * testsuite/20_util/function_objects/bad_function_call: Move... |
| * testsuite/20_util/bad_function_call: ...here. |
| |
| 2007-08-21 Benjamin Kosnik <bkoz@montsouris.artheist.org> |
| |
| * include/Makefile.am (install-data-local): Remove pch-install rules. |
| (host_headers): Add stdc++.h, stdtr1c++.h, extc++.h. |
| * include/Makefile.in: Regenerate. |
| * config.h.in: Same. |
| |
| * scripts/check_compile: Remove space between outputs. |
| * include/ext/throw_allocator.h: Correct doxygen markup. |
| * include/bits/char_traits.h: Correct spacing. |
| * include/bits/stl_function.h: Same, for 80 column. |
| * include/std/valarray: Same. |
| * testsuite/util/testsuite_iterators.h: Same. |
| * testsuite/25_algorithms/headers/algorithm/synopsis.cc: Format. |
| |
| 2007-08-17 Daniel Jacobowitz <dan@codesourcery.com> |
| |
| PR testsuite/31884 |
| * testsuite/ext/pb_ds/example/priority_queue_dijkstra.cc (main): Do |
| not access deleted nodes. |
| |
| * testsuite/25_algorithms/copy/streambuf_iterators/char/4.cc, |
| testsuite/25_algorithms/find/istreambuf_iterators/char/2.cc, |
| testsuite/27_io/basic_filebuf/open/char/4.cc, |
| testsuite/27_io/objects/char/9.cc: Use dg-require-fileio. |
| * testsuite/ext/forced_exception_error/cons_virtual_derivation.cc, |
| testsuite/ext/pb_ds/regression/hash_data_map_rand.cc, |
| testsuite/ext/pb_ds/regression/trie_data_map_rand.cc, |
| testsuite/ext/pb_ds/regression/list_update_no_data_map_rand.cc, |
| testsuite/ext/pb_ds/regression/tree_no_data_map_rand.cc, |
| testsuite/ext/pb_ds/regression/list_update_data_map_rand.cc, |
| testsuite/ext/pb_ds/regression/hash_no_data_map_rand.cc, |
| testsuite/ext/pb_ds/regression/priority_queue_rand.cc, |
| testsuite/ext/pb_ds/regression/tree_data_map_rand.cc, |
| testsuite/ext/pb_ds/regression/trie_no_data_map_rand.cc, |
| testsuite/ext/throw_allocator/deallocate_global.cc, |
| testsuite/ext/throw_allocator/check_delete.cc, |
| testsuite/ext/throw_allocator/check_allocate_max_size.cc, |
| testsuite/ext/throw_allocator/check_deallocate_null.cc, |
| testsuite/ext/throw_allocator/check_new.cc, |
| testsuite/ext/throw_allocator/deallocate_local.cc, |
| testsuite/tr1/5_numerical_facilities/random/subtract_with_carry_01/ |
| cons/gen1.cc, |
| testsuite/tr1/5_numerical_facilities/random/subtract_with_carry/cons/ |
| gen1.cc, |
| testsuite/tr1/5_numerical_facilities/random/linear_congruential/cons/ |
| gen1.cc, |
| testsuite/tr1/5_numerical_facilities/random/mersenne_twister/cons/ |
| gen1.cc, |
| testsuite/23_containers/list/modifiers/insert/25288.cc: Use |
| dg-require-time. |
| |
| 2007-08-17 Paolo Carlini <pcarlini@suse.de> |
| |
| * testsuite/20_util/make_signed/requirements/typedefs_neg.cc: Adjust |
| dg-error lines. |
| * testsuite/20_util/make_unsigned/requirements/typedefs_neg.cc: Ditto. |
| |
| 2007-08-17 Chris Fairles <chris.fairles@gmail.com> |
| |
| PR libstdc++/33098 |
| * include/std/type_traits (__is_convertible_helper): |
| Use add_lvalue_reference. |
| |
| 2007-08-17 Johannes Willkomm <willkomm@sc.rwth-aachen.de> |
| |
| PR libstdc++/33084 |
| * include/std/valarray (operator _Op(const _Tp&, |
| const valarray<>&)): Fix typo. |
| * testsuite/26_numerics/numeric_arrays/valarray/33084.cc: New. |
| |
| 2007-08-07 Jim Blandy <jimb@codesourcery.com> |
| |
| * src/Makefile.am (libstdc++-symbol.ver): Make |
| sure the build tree copy of libstdc++-symbol.ver is writeable. |
| * src/Makefile.in: Regenerated. |
| |
| 2007-08-02 Paolo Carlini <pcarlini@suse.de> |
| |
| DR 660, [Ready] in Toronto. |
| * include/bits/stl_function.h (bit_and, bit_or, bit_xor): Add. |
| * testsuite/20_util/function_objects/dr660.cc: New. |
| * docs/html/ext/howto.html: Add an entry for DR 660, update. |
| |
| * docs/html/ext/lwg-closed.html, docs/html/ext/lwg-active.html, |
| docs/html/ext/lwg-defects.html: Import Revision 49. |
| |
| 2007-07-30 Paolo Carlini <pcarlini@suse.de> |
| |
| PR libstdc++/32908 |
| * include/bits/stl_algobase.h (struct __lc_rai): New. |
| (lexicographical_compare(_II1, _II1, _II2, _II2), |
| lexicographical_compare(_II1, _II1, _II2, _II2, _Compare)): Use it. |
| * testsuite/performance/25_algorithms/lexicographical_compare.cc: New. |
| |
| 2007-07-27 Paolo Carlini <pcarlini@suse.de> |
| |
| PR libstdc++/32907 |
| * include/bits/basic_string.h (operator==(const basic_string<_CharT>&, |
| const basic_string<_CharT>&)): Add. |
| (operator!=): Forward to operator==. |
| * include/ext/vstring.h(operator==(const __versa_string<_CharT, |
| std::char_traits<_CharT>, std::allocator<_CharT>, _Base>&, |
| const __versa_string<_CharT, std::char_traits<_CharT>, |
| std::allocator<_CharT>, _Base>&)): Add. |
| (operator!=): Forward to operator==. |
| |
| * include/ext/sso_string_base.h (_M_compare): Remove. |
| |
| 2007-07-25 Stephen M. Webb <stephenw@xandros.com> |
| |
| Fixed abi_check for missing symbol size changes. |
| * testsuite/util/testsuite_abi.cc: Changed local variable name to |
| prevent member variable hiding. |
| |
| 2007-07-25 John David Anglin <dave.anglin@nrc-cnrc.gc.ca> |
| |
| PR libstdc++/31836 |
| * config/locale/generic/c_locale.cc (__convert_to_v): Don't use |
| strtold if _GLIBCXX_HAVE_BROKEN_STRTOLD is defined. |
| * config/os/hpux/os_defines.h (_GLIBCXX_HAVE_BROKEN_STRTOLD): Define |
| if __hppa__ is defined. |
| |
| 2007-07-16 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE> |
| |
| PR bootstrap/3456 |
| * testsuite/22_locale/locale/cons/12658_thread-1.cc: Enable on |
| mips-sgi-irix6*. |
| * testsuite/22_locale/locale/cons/12658_thread-2.cc: Likewise. |
| * testsuite/thread/18185.cc: Likewise. |
| * testsuite/thread/pthread1.cc: Likewise. |
| * testsuite/thread/pthread2.cc: Likewise. |
| * testsuite/thread/pthread3.cc: Likewise. |
| * testsuite/thread/pthread4.cc: Likewise. |
| * testsuite/thread/pthread5.cc: Likewise. |
| * testsuite/thread/pthread6.cc: Likewise. |
| * testsuite/thread/pthread7-rope.cc: Likewise. |
| * testsuite/tr1/2_general_utilities/shared_ptr/thread/ |
| default_weaktoshared.cc: Likewise. |
| * testsuite/tr1/2_general_utilities/shared_ptr/thread/ |
| mutex_weaktoshared.cc: Likewise. |
| |
| 2007-07-16 Danny Smith <dannysmith@users.sourceforge.net> |
| |
| * config/os/mingw32/ctype_base.h: Use the generic libstdc++ masks |
| rather than MSVCRT defines. |
| * config/os/mingw32/ctype_noninline.h (classic_table): Construct |
| and return a static classic table based on generic libstdc++ masks. |
| |
| 2007-07-12 Douglas Gregor <doug.gregor@gmail.com> |
| |
| * testsuite/tr1/3_function_objects/bind/all_bound.cc: Disambiguate |
| uses of TR1/C++0x facilities. |
| * testsuite/tr1/3_function_objects/bind/nested.cc: Ditto. |
| * testsuite/tr1/3_function_objects/bind/placeholders.cc: Ditto. |
| * testsuite/tr1/6_containers/unordered_multimap/requirements/ |
| explicit_instantiation.cc: Ditto. |
| * testsuite/tr1/6_containers/unordered_multimap/swap/1.cc: Ditto. |
| * testsuite/tr1/6_containers/unordered_multimap/swap/2.cc: Ditto. |
| * testsuite/tr1/6_containers/unordered_set/requirements/ |
| explicit_instantiation.cc: Ditto. |
| * testsuite/tr1/6_containers/unordered_set/swap/1.cc: Ditto. |
| * testsuite/tr1/6_containers/unordered_set/swap/2.cc: Ditto. |
| * testsuite/tr1/6_containers/utility/pair.cc: Ditto. |
| * testsuite/tr1/6_containers/unordered_map/requirements/ |
| explicit_instantiation.cc: Ditto. |
| * testsuite/tr1/6_containers/unordered_map/24064.cc: Ditto. |
| * testsuite/tr1/6_containers/unordered_map/swap/1.cc: Ditto. |
| * testsuite/tr1/6_containers/unordered_map/swap/2.cc: Ditto. |
| * testsuite/tr1/6_containers/tuple/cons/big_tuples.cc: Ditto. |
| * testsuite/tr1/6_containers/tuple/cons/constructor.cc: Ditto. |
| * testsuite/tr1/6_containers/tuple/cons/assignment.cc: Ditto. |
| * testsuite/tr1/6_containers/tuple/tuple_element.cc: Ditto. |
| * testsuite/tr1/6_containers/tuple/tuple_size.cc: Ditto. |
| * testsuite/tr1/6_containers/tuple/comparison_operators/ |
| comparisons.cc: Ditto. |
| * testsuite/tr1/6_containers/tuple/element_access/get.cc: Ditto. |
| * testsuite/tr1/6_containers/tuple/creation_functions/23978.cc: Ditto. |
| * testsuite/tr1/6_containers/tuple/creation_functions/tie.cc: Ditto. |
| * testsuite/tr1/6_containers/tuple/creation_functions/make_tuple.cc: |
| Ditto. |
| * testsuite/tr1/6_containers/unordered_multiset/requirements/ |
| explicit_instantiation.cc: Ditto. |
| * testsuite/tr1/6_containers/unordered_multiset/swap/1.cc: Ditto. |
| * testsuite/tr1/6_containers/unordered_multiset/swap/2.cc: Ditto. |
| |
| 2007-07-10 Bob Wilson <bob.wilson@acm.org> |
| |
| * configure.ac: Check if $atomicity_dir is cpu/generic/atomicity_mutex |
| instead of the non-existent cpu/generic/atomic_mutex. |
| * configure: Regenerate. |
| |
| 2007-07-10 Paolo Carlini <pcarlini@suse.de> |
| |
| * include/std/utility (identity, move, forward): Add. |
| * testsuite/20_util/move/requirements/explicit_instantiation.cc: New. |
| * testsuite/20_util/move/1.cc: New. |
| * testsuite/20_util/identity/value.cc: New. |
| * testsuite/20_util/identity/requirements/typedefs.cc: New. |
| * testsuite/20_util/identity/requirements/explicit_instantiation.cc: |
| New. |
| * testsuite/20_util/forward/requirements/explicit_instantiation.cc: |
| New. |
| * testsuite/20_util/forward/1.cc: New. |
| * testsuite/20_util/forward/1_neg.cc: New. |
| |
| 2007-07-09 Paolo Carlini <pcarlini@suse.de> |
| |
| * testsuite/27_io/ios_base/failure/what-1.cc: Include <stdexcept>. |
| |
| 2007-07-09 Jim Xochellis <jimxoch@yahoo.gr> |
| Paolo Carlini <pcarlini@suse.de> |
| |
| * include/bits/stl_algo.h (search(_ForwardIterator1, |
| _ForwardIterator1, _ForwardIterator2, _ForwardIterator2)): Tidy. |
| (search(_ForwardIterator1, _ForwardIterator1, _ForwardIterator2, |
| _ForwardIterator2, _BinaryPredicate)): Likewise. |
| |
| 2007-07-06 Hans-Peter Nilsson <hp@axis.com> |
| |
| * testsuite/lib/libstdc++.exp (v3-build_support): Use env(AR) |
| and env(RANLIB), not env(AR_FOR_TARGET) and env(RANLIB_FOR_TARGET). |
| |
| 2007-07-05 Joerg Richter <joerg.richter@pdv-fs.de> |
| |
| PR libstdc++/31957 |
| * include/Makefile.am: Work around an AIX sed oddity. |
| * include/Makefile.in: Regenerate. |
| |
| 2007-07-04 Jim Xochellis <jimxoch@yahoo.gr> |
| |
| * include/bits/stl_algo.h (search(_ForwardIterator1, |
| _ForwardIterator1, _ForwardIterator2, _ForwardIterator2)): Simplify |
| general case loop to a for(;;). |
| (search(_ForwardIterator1, _ForwardIterator1, _ForwardIterator2, |
| _ForwardIterator2, _BinaryPredicate)): Likewise; remove redundant |
| inner loop. |
| |
| 2007-07-03 Paolo Carlini <pcarlini@suse.de> |
| |
| PR libstdc++/31518 |
| * include/debug/formatter.h (_Error_formatter::_M_get_max_length): New. |
| (_Error_formatter::_Error_formatter): Use it. |
| * src/debug.cc: Define. |
| (_Error_formatter::_M_error): Tweak. |
| * configure.ac: Adjust version to 6:10:0. |
| * config/abi/pre/gnu.ver: Export _Error_formatter::_M_get_max_length |
| at GLIBCXX_3.4.10. |
| * testsuite/util/testsuite_abi.cc: Add GLIBCXX_3.4.10. |
| * docs/html/debug.html: Document. |
| * configure: Regenerate. |
| |
| 2007-07-02 Douglas Gregor <doug.gregor@gmail.com> |
| |
| * testsuite/20_util/make_signed/requirements/typedefs_neg.cc: |
| Tweak line numbers. |
| * testsuite/20_util/make_unsigned/requirements/typedefs_neg.cc: |
| Ditto. |
| * testsuite/20_util/make_unsigned/requirements/typedefs-1.cc: |
| Don't try to create an unsigned wchar_t. |
| * testsuite/20_util/make_unsigned/requirements/typedefs-2.cc: |
| Don't try to create an unsigned wchar_t. |
| * testsuite/util/testsuite_hooks.h: Remove a stray semicolon. |
| |
| 2007-07-01 Douglas Gregor <doug.gregor@gmail.com> |
| |
| * include/std/type_traits (__make_unsigned): Remove invalid |
| wchar_t specialization. |
| (__make_signed): Remove invalid wchar_t specialization. |
| |
| 2007-06-29 Douglas Gregor <doug.gregor@gmail.com> |
| |
| * testsuite/18_support/headers/cstdbool/std_c++0x_neg.cc: Force |
| C++98 mode. |
| * testsuite/18_support/headers/cstdint/std_c++0x_neg.cc: Ditto. |
| * testsuite/20_util/headers/type_traits/std_c++0x_neg.cc: Ditto. |
| * testsuite/23_containers/headers/array/std_c++0x_neg.cc: Ditto. |
| * testsuite/23_containers/headers/tuple/std_c++0x_neg.cc: Ditto. |
| * testsuite/23_containers/headers/unordered_map/std_c++0x_neg.cc: |
| Ditto. |
| * testsuite/23_containers/headers/unordered_set/std_c++0x_neg.cc: |
| Ditto. |
| * testsuite/26_numerics/headers/ccomplex/std_c++0x_neg.cc: Ditto. |
| * testsuite/26_numerics/headers/cfenv/std_c++0x_neg.cc: Ditto. |
| * testsuite/26_numerics/headers/ctgmath/std_c++0x_neg.cc: Ditto. |
| * testsuite/26_numerics/headers/random/std_c++0x_neg.cc: Ditto. |
| * testsuite/27_io/headers/cinttypes/std_c++0x_neg.cc: Ditto. |
| * testsuite/28_regex/headers/regex/std_c++0x_neg.cc: Ditto. |
| |
| 2007-06-28 Paolo Carlini <pcarlini@suse.de> |
| |
| PR libstdc++/32509 |
| * acinclude.m4 (GLIBCXX_ENABLE_CLOCALE): Carry out the checks |
| involving the de_DE locale only if an auto locale config is |
| used for a target suitable for the gnu locale model. |
| * docs/html/install.html: Update. |
| * configure: Regenerated. |
| |
| 2007-06-26 Benjamin Kosnik <bkoz@redhat.com> |
| |
| * testsuite/util/testsuite_api.h: New. |
| * testsuite/27_io/ios_base/failure: Add. |
| * testsuite/27_io/ios_base/failure/cons_virtual_derivation.cc: New. |
| * testsuite/27_io/ios_base/failure/what-1.cc: Same. |
| * testsuite/27_io/ios_base/failure/what-2.cc: Same. |
| * testsuite/27_io/ios_base/failure/what-big.cc: Same. |
| * testsuite/27_io/ios_base/failure/what-3.cc: Same. |
| * testsuite/19_diagnostics/logic_error/ |
| cons_virtual_derivation.cc: Same. |
| * testsuite/19_diagnostics/runtime_error/ |
| cons_virtual_derivation.cc: Same. |
| * testsuite/18_support/bad_alloc/cons_virtual_derivation.cc: Same. |
| * testsuite/18_support/bad_cast/cons_virtual_derivation.cc: Same. |
| * testsuite/18_support/bad_exception/cons_virtual_derivation.cc: Same. |
| * testsuite/18_support/bad_typeid/cons_virtual_derivation.cc: Same. |
| * testsuite/ext/concurrence_lock_error: New. |
| * testsuite/ext/concurrence_lock_error/ |
| cons_virtual_derivation.cc: Same. |
| * testsuite/ext/forced_exception_error: New. |
| * testsuite/ext/forced_exception_error/ |
| cons_virtual_derivation.cc: Same. |
| * testsuite/ext/concurrence_unlock_error: New. |
| * testsuite/ext/concurrence_unlock_error/ |
| cons_virtual_derivation.cc: Same. |
| * testsuite/20_util/function_objects/bad_function_call: New. |
| * testsuite/20_util/function_objects/bad_function_call/ |
| cons_virtual_derivation.cc: Same. |
| |
| 2007-06-26 Benjamin Kosnik <bkoz@redhat.com> |
| |
| * include/ext/throw_allocator.h: Fixes for -fno-exceptions. |
| * testsuite/util/testsuite_shared.cc: Same. |
| * testsuite/util/io/illegal_input_error.hpp: Same. |
| * testsuite/util/io/verified_cmd_line_input.cc: Same. |
| |
| * libsupc++/typeinfo (type_info): Correct comment formatting, |
| clarify member access and public interface. |
| * libsupc++/exception: Less compressed comments. |
| * libsupc++/new: Same. |
| |
| 2007-06-18 Paolo Carlini <pcarlini@suse.de> |
| |
| * include/bits/stl_list.h: Rename guard macro consistently with |
| file name. |
| * include/bits/stl_algobase.h: Likewise. |
| * include/bits/stl_map.h: Likewise. |
| * include/bits/stl_queue.h: Likewise. |
| * include/bits/stl_set.h: Likewise. |
| * include/bits/stl_stack.h: Likewise. |
| * include/bits/stl_iterator_base_types.h: Likewise. |
| * include/bits/stl_multimap.h: Likewise. |
| * include/bits/stl_pair.h: Likewise. |
| * include/bits/stl_vector.h: Likewise. |
| * include/bits/stl_deque.h: Likewise. |
| * include/bits/stl_multiset.h: Likewise. |
| * include/bits/stl_iterator_base_funcs.h: Likewise. |
| * include/bits/stl_algo.h: Likewise. |
| * include/bits/stl_iterator.h: Likewise. |
| * include/bits/stl_tempbuf.h: Likewise. |
| * include/bits/stl_bvector.h: Likewise. |
| * include/bits/stl_function.h: Likewise. |
| * include/bits/stl_tree.h: Likewise. |
| |
| 2007-06-17 Nathan Sidwell <nathan@codesourcery.com> |
| |
| * config/cpu/m68k/atomicity.h: Use __mcfisaa__, __mcfisaaplus__, |
| __mcfisab__ & __mcfisac__ instead of obsolete cpu #defines. |
| |
| 2007-06-13 Richard Earnshaw <rearnsha@arm.com> |
| |
| * libsupc++/eh_arm.cc (__cxa_type_match): Handle foreign |
| exceptions. |
| * libsubpc++/eh_personality.cc: Don't try to set up foreign or |
| forced unwind types here when using the ARM EABI unwinder. |
| |
| 2007-06-13 Paolo Carlini <pcarlini@suse.de> |
| |
| * include/c_global/cmath: Tweak includes. |
| * include/std/memory: Likewise. |
| * include/std/complex: Likewise. |
| * include/tr1/memory: Likewise. |
| * include/tr1/complex: Likewise. |
| * include/tr1/cmath: Likewise; do not wrap special functions |
| in #ifndef __GXX_EXPERIMENTAL_CXX0X__. |
| |
| 2007-06-10 Benjamin Kosnik <bkoz@redhat.com> |
| |
| * testsuite/util/testsuite_performance.h: Add cstring include for |
| memset. |
| |
| 2007-06-08 Paolo Carlini <pcarlini@suse.de> |
| |
| * docs/html/install.html: Adjust consistently with libstdc++/31717. |
| |
| 2007-06-08 Francesco Palagi <palagi@arcetri.astro.it> |
| |
| * include/std/fstream: Add Table 92 in comment. |
| |
| 2007-06-06 Paolo Carlini <pcarlini@suse.de> |
| |
| PR libstdc++/32233 |
| * include/bits/stl_vector.h (_M_fill_initialize): Fix return type. |
| * testsuite/23_containers/vector/requirements/dr438/assign_neg.cc: |
| Adjust dg-error line. |
| * testsuite/23_containers/vector/requirements/dr438/insert_neg.cc: |
| Likewise. |
| |
| 2007-06-06 Benjamin Kosnik <bkoz@redhat.com> |
| Frank Mori Hess <frank.hess@nist.gov> |
| |
| * docs/html/debug.html: Correct link. |
| |
| 2007-06-02 Paolo Carlini <pcarlini@suse.de> |
| |
| * include/tr1_impl/type_traits (is_reference, add_reference, |
| remove_reference): Remove. |
| * include/tr1/type_traits (is_reference, add_reference, |
| remove_reference): Add. |
| * include/std/type_traits (is_lvalue_reference, is_rvalue_reference, |
| is_reference, remove_reference, add_lvalue_reference, |
| add_rvalue_reference): Add. |
| * include/tr1_impl/boost_shared_ptr.h (operator*): Adjust. |
| * testsuite/20_util/add_lvalue_reference/requirements/ |
| explicit_instantiation.cc: New. |
| * testsuite/20_util/add_lvalue_reference/value.cc: Likewise. |
| * testsuite/20_util/add_rvalue_reference/requirements/ |
| explicit_instantiation.cc: Likewise. |
| * testsuite/20_util/add_rvalue_reference/value.cc: Likewise. |
| * testsuite/20_util/is_lvalue_reference/requirements/ |
| explicit_instantiation.cc: Likewise. |
| * testsuite/20_util/is_lvalue_reference/requirements/ |
| typedefs.cc: Likewise. |
| * testsuite/20_util/is_lvalue_reference/value.cc: Likewise. |
| * testsuite/20_util/is_rvalue_reference/requirements/ |
| explicit_instantiation.cc: Likewise. |
| * testsuite/20_util/is_rvalue_reference/requirements/ |
| typedefs.cc: Likewise. |
| * testsuite/20_util/is_rvalue_reference/value.cc: Likewise. |
| * testsuite/20_util/is_reference/requirements/ |
| explicit_instantiation.cc: Likewise. |
| * testsuite/20_util/is_reference/requirements/typedefs.cc: Likewise. |
| * testsuite/20_util/is_reference/value.cc: Likewise. |
| * testsuite/20_util/remove_reference/requirements/ |
| explicit_instantiation.cc: New. |
| * testsuite/20_util/remove_reference/value.cc: Likewise. |
| |
| * testsuite/tr1/4_metaprogramming/add_const/requirements/ |
| typedefs.cc: Move... |
| * testsuite/tr1/4_metaprogramming/add_const/value.cc: ... here. |
| * testsuite/tr1/4_metaprogramming/add_cv/requirements/ |
| typedefs.cc: Move... |
| * testsuite/tr1/4_metaprogramming/add_cv/value.cc: ... here. |
| * testsuite/tr1/4_metaprogramming/add_pointer/requirements/ |
| typedefs.cc: Move... |
| * testsuite/tr1/4_metaprogramming/add_pointer/value.cc: ... here. |
| * testsuite/tr1/4_metaprogramming/add_reference/requirements/ |
| typedefs.cc: Move... |
| * testsuite/tr1/4_metaprogramming/add_reference/value.cc: ... here. |
| * testsuite/tr1/4_metaprogramming/add_volatile/requirements/ |
| typedefs.cc: Move... |
| * testsuite/tr1/4_metaprogramming/add_volatile/value.cc: ... here. |
| * testsuite/tr1/4_metaprogramming/aligned_storage/requirements/ |
| typedefs.cc: Move... |
| * testsuite/tr1/4_metaprogramming/aligned_storage/value.cc: ... here. |
| |
| 2007-06-02 Paolo Bonzini <bonzini@gnu.org> |
| |
| * configure: Regenerate. |
| |
| 2007-06-01 Benjamin Kosnik <bkoz@redhat.com> |
| |
| * testsuite/19_diagnostics/logic_error/what-big.cc: New. |
| * testsuite/19_diagnostics/logic_error/what-3.cc: Same. |
| * testsuite/19_diagnostics/runtime_error/what-big.cc: Same. |
| * testsuite/19_diagnostics/runtime_error/what-3.cc: Same. |
| |
| * testsuite/18_support/14493.cc: Break into... |
| * testsuite/18_support/exception/what.cc: ...this. |
| * testsuite/18_support/bad_cast/what.cc: ...this. |
| * testsuite/18_support/bad_alloc/what.cc: ...this. |
| * testsuite/18_support/bad_typeid/what.cc: ...this. |
| * testsuite/18_support/bad_exception/what.cc: ...this. |
| |
| * testsuite/19_diagnostics/bad_exception/23591_thread-1.c: Move... |
| * testsuite/18_support/bad_exception/23591_thread-1.c: ...here. |
| |
| * testsuite/18_support/14026.cc: Move... |
| * testsuite/18_support/uncaught_exception/14026.cc: ...here. |
| |
| 2007-06-01 Benjamin Kosnik <bkoz@redhat.com> |
| |
| * include/ext/throw_allocator.h (__throw_allocator::allocate): |
| Throw bad_alloc for out of memory conditions. |
| * testsuite/ext/throw_allocator/deallocate_global.cc: New. |
| * testsuite/ext/throw_allocator/check_delete.cc: Same. |
| * testsuite/ext/throw_allocator/check_allocate_max_size.cc: Same. |
| * testsuite/ext/throw_allocator/check_deallocate_null.cc: Same. |
| * testsuite/ext/throw_allocator/explicit_instantiation.cc: Same. |
| * testsuite/ext/throw_allocator/check_new.cc: Same. |
| * testsuite/ext/throw_allocator/deallocate_local.cc: Same. |
| |
| 2007-05-31 Paolo Carlini <pcarlini@suse.de> |
| |
| PR libstdc++/31426 |
| * include/bits/c++config: Remove namespace association bits |
| from tr1 to std. |
| |
| * include/ext/type_traits.h (__promote, __promote2, |
| __promote3, __promote4): Add. |
| |
| * include/bits/hashtable.h: New. |
| * include/bits/functional_hash.h: Likewise. |
| * include/tr1/hashtable.h: Likewise. |
| |
| * include/tr1_impl/random: New. |
| * include/tr1_impl/cinttypes: Likewise. |
| * include/tr1_impl/cstdlib: Likewise. |
| * include/tr1_impl/unordered_map: Likewise. |
| * include/tr1_impl/cstdio: Likewise. |
| * include/tr1_impl/boost_shared_ptr.h: Likewise. |
| * include/tr1_impl/cctype: Likewise. |
| * include/tr1_impl/random.tcc: Likewise. |
| * include/tr1_impl/tuple: Likewise. |
| * include/tr1_impl/functional_hash.h: Likewise. |
| * include/tr1_impl/hashtable: Likewise. |
| * include/tr1_impl/cmath: Likewise. |
| * include/tr1_impl/type_traitsfwd.h: Likewise. |
| * include/tr1_impl/hashtable_policy.h: Likewise. |
| * include/tr1_impl/cfenv: Likewise. |
| * include/tr1_impl/unordered_set: Likewise. |
| * include/tr1_impl/functional: Likewise. |
| * include/tr1_impl/utility: Likewise. |
| * include/tr1_impl/complex: Likewise. |
| * include/tr1_impl/type_traits: Likewise. |
| * include/tr1_impl/cwchar: Likewise. |
| * include/tr1_impl/cstdint: Likewise. |
| * include/tr1_impl/regex: Likewise. |
| * include/tr1_impl/array: Likewise. |
| * include/tr1_impl/cwctype: Likewise. |
| |
| * include/tr1/type_traitsfwd.h: Remove. |
| * include/tr1/boost_shared_ptr.h: Likewise. |
| * include/tr1/common.h: Likewise. |
| * include/tr1/hashtable: Likewise. |
| * include/tr1/hashtable_policy.h: Likewise. |
| * include/tr1/random.tcc: Likewise. |
| |
| * include/c_global/cinttypes: Include tr1_impl/cinttypes. |
| * include/c_global/cstdlib: Likewise for cstdlib. |
| * include/c_global/cstdio: Likewise for cstdio. |
| * include/c_global/cctype: Likewise for cctype. |
| * include/c_global/cmath: Likewise for cmath. |
| * include/c_global/cfenv: Likewise for cfenv. |
| * include/c_global/cwchar: Likewise for cwchar. |
| * include/c_global/cstdint: Likewise for cstdint. |
| * include/c_global/cwctype: Likewise for cwctype. |
| * include/tr1/cinttypes: Likewise for cinttypes. |
| * include/tr1/cstdlib: Likewise for cstdlib. |
| * include/tr1/cstdio: Likewise for cstdio. |
| * include/tr1/cctype: Likewise for cctype. |
| * include/tr1/cmath: Likewise for cmath. |
| * include/tr1/cfenv: Likewise for cfenv. |
| * include/tr1/cwchar: Likewise for cwchar. |
| * include/tr1/cstdint: Likewise for cstdint. |
| * include/tr1/cwctype: Likewise for cwctype. |
| * include/tr1/functional_hash.h: Likewise for functional_hash. |
| |
| * include/std/tuple: Include tr1_impl/tuple. |
| * include/std/utility: Likewise for utility. |
| * include/std/type_traits: Likewise for type_traits. |
| (is_pod): Just forward to __is_pod. |
| (has_trivial_default_constructor): Just forward to |
| __has_trivial_constructor. |
| (has_trivial_copy_constructor): Just forward to __has_trivial_copy. |
| (has_trivial_assign): Just forward to __has_trivial_assign. |
| (has_trivial_destructor): Just forward to __has_trivial_destructor. |
| (has_nothrow_default_constructor): Just forward to |
| __has_nothrow_constructor. |
| (has_nothrow_copy_constructor): Just forward to __has_nothrow_copy. |
| (has_nothrow_assign): Just forward to __has_nothrow_assign. |
| (is_base_of): Just forward to __is_base_of. |
| (is_signed, is_unsigned): Implement according to the C++0x |
| specifications. |
| * include/std/memory: Likewise for memory. |
| * include/std/regex: Likewise for regex. |
| * include/std/random: Likewise for random. |
| * include/std/unordered_map: Likewise for unordered_map. |
| * include/std/unordered_set: Likewise for unordered_set. |
| * include/std/functional: Likewise for functional. |
| * include/std/complex: Likewise for complex. |
| * include/std/array: Likewise for array. |
| * include/tr1/tuple: Likewise for tuple. |
| * include/tr1/utility: Likewise for utility. |
| * include/tr1/type_traits: Likewise for type_traits |
| * include/tr1/memory: Likewise for memory. |
| * include/tr1/regex: Likewise for regex. |
| * include/tr1/random: Likewise for random. |
| * include/tr1/unordered_map: Likewise for unordered_map. |
| * include/tr1/unordered_set: Likewise for unordered_set. |
| * include/tr1/functional: Likewise for functional. |
| * include/tr1/complex: Likewise for complex. |
| * include/tr1/array: Likewise for array. |
| |
| * include/c_global/ctgmath: Tweak. |
| * include/c_global/cstdarg: Likewise. |
| * include/c_global/ctime: Likewise. |
| * include/c_global/climits: Likewise. |
| * include/c_global/cfloat: Likewise. |
| * include/c_global/ccomplex: Likewise. |
| * include/c_global/cstdbool: Likewise. |
| |
| * include/tr1/poly_laguerre.tcc: Tweak, don't use _GLIBCXX_TR1. |
| * include/tr1/riemann_zeta.tcc: Likewise. |
| * include/tr1/beta_function.tcc: Likewise. |
| * include/tr1/exp_integral.tcc: Likewise. |
| * include/tr1/hypergeometric.tcc: Likewise. |
| * include/tr1/modified_bessel_func.tcc: Likewise. |
| * include/tr1/legendre_function.tcc: Likewise. |
| * include/tr1/special_function_util.h: Likewise. |
| * include/tr1/bessel_function.tcc: Likewise. |
| * include/tr1/poly_hermite.tcc: Likewise. |
| * include/tr1/ell_integral.tcc: Likewise. |
| * include/tr1/gamma.tcc: Likewise. |
| * include/tr1/stdlib.h: Likewise. |
| * include/tr1/math.h: Likewise. |
| |
| * include/tr1/complex.h: Minor tweaks. |
| * include/tr1/wctype.h: Likewise. |
| * include/tr1/wchar.h: Likewise. |
| * include/tr1/inttypes.h: Likewise. |
| * include/tr1/tgmath.h: Likewise. |
| * include/tr1/cstdbool: Likewise. |
| * include/tr1/cfloat: Likewise. |
| * include/tr1/ccomplex: Likewise. |
| * include/tr1/ctime: Likewise. |
| * include/tr1/climits: Likewise. |
| * include/tr1/ctgmath: Likewise. |
| * include/tr1/cstdarg: Likewise. |
| |
| * testsuite/tr1/headers.cc: Move... |
| * testsuite/tr1/headers/all.cc: ... here. |
| * testsuite/tr1/using_namespace_std_tr1.cc: Move... |
| * testsuite/tr1/headers/c++200x/using_namespace_std_tr1.cc: ... here. |
| * testsuite/tr1/headers/using_namespace_std_tr1.cc ... here. |
| * testsuite/tr1/headers/c++200x/using_namespace_std_tr1.cc: New. |
| |
| * testsuite/20_util/tuple/requirements/explicit_instantiation.cc: |
| Adjust namespace. |
| * testsuite/20_util/has_nothrow_copy_constructor/value.cc: Adjust to |
| the C++0x requirements. |
| * testsuite/20_util/has_nothrow_default_constructor/value.cc: Likewise. |
| * testsuite/20_util/has_trivial_copy_constructor/value.cc: Likewise. |
| * testsuite/20_util/has_trivial_default_constructor/value.cc: Likewise. |
| |
| * testsuite/20_util/make_signed/requirements/typedefs_neg.cc: Adjust |
| dg-error lines. |
| * testsuite/20_util/make_unsigned/requirements/typedefs_neg.cc: |
| Likewise. |
| * testsuite/20_util/headers/type_traits/types_std_c++0x_neg.cc: |
| Un-xfail. |
| |
| * testsuite/20_util/is_signed/value.cc: New. |
| * testsuite/20_util/is_signed/requirements/typedefs.cc: Likewise. |
| * testsuite/20_util/is_signed/requirements/explicit_instantiation.cc: |
| Likewise. |
| * testsuite/20_util/is_unsigned/value.cc: Likewise.. |
| * testsuite/20_util/is_unsigned/requirements/typedefs.cc: Likewise. |
| * testsuite/20_util/is_unsigned/requirements/explicit_instantiation.cc: |
| Likewise. |
| |
| * include/Makefile.am: Adjust. |
| * include/Makefile.in: Regenerate. |
| |
| 2007-05-31 Paolo Carlini <pcarlini@suse.de> |
| |
| PR c++/32158 (libstdc++ bits) |
| * include/bits/stl_uninitialized.h (__uninitialized_copy_aux, |
| __uninitialized_fill_aux, __uninitialized_fill_n_aux): |
| Remove. |
| (struct __uninitialized_copy, struct __uninitialized_fill, |
| struct __uninitialized_fill_n): Add. |
| (uninitialized_copy, uninitialized_fill, uninitialized_fill_n): |
| Adjust. |
| * testsuite/20_util/specialized_algorithms/32158.cc: New. |
| |
| * include/bits/stl_uninitialized.h (uninitialized_copy(_InputIterator, |
| _InputIterator, _ForwardIterator)): Robustify vs non-POD input. |
| |
| * include/bits/stl_vector.h (_M_fill_initialize): New. |
| (vector(size_type, const value_type&, const allocator_type&), |
| _M_initialize_dispatch(_Integer, _Integer, __true_type)): Use it. |
| * testsuite/23_containers/vector/requirements/dr438/assign_neg.cc: |
| Adjust dg-error line. |
| * testsuite/23_containers/vector/requirements/dr438/insert_neg.cc: |
| Likewise. |
| * testsuite/23_containers/vector/requirements/dr438/ |
| constructor_1_neg.cc: Likewise. |
| * testsuite/23_containers/vector/requirements/dr438/ |
| constructor_2_neg.cc: Likewise. |
| |
| 2007-05-29 Paolo Carlini <pcarlini@suse.de> |
| |
| * aclocal.m4: Regenerate. |
| |
| * testsuite/17_intro/headers/c++1998/c++_for_c.tar: Remove. |
| * testsuite/17_intro/headers/c++1998/c++.tar: Likewise. |
| |
| 2007-05-28 Benjamin Kosnik <bkoz@redhat.com> |
| |
| PR libstdc++/31717 |
| * acinclude.m4 (GLIBCXX_ENABLE_CLOCALE): Re-organize. Sanity check |
| gnu locale model requests to make sure it will work for the requested |
| target. Add checks for strxfrm_l, strerror_l when in gnu locale, |
| and strerror_r everywhere. |
| * aclocal.m4: Regenerated. |
| * configure: Regenerated. |
| * config.h.in: Regenerated. |
| |
| 2007-05-27 Paolo Carlini <pcarlini@suse.de> |
| |
| * include/tr1/boost_shared_ptr.h |
| (_Sp_counted_base<_S_mutex>::_M_add_ref_lock()): Do not wrap in |
| #ifdef __GTHREADS. |
| |
| 2007-05-27 Paolo Carlini <pcarlini@suse.de> |
| |
| * include/c_global/cwchar: Do not include <ctime>. |
| * include/c_std/cwchar: Likewise. |
| * include/ext/throw_allocator.h: Do it here. |
| |
| 2007-05-25 Paolo Carlini <pcarlini@suse.de> |
| |
| * config/locale/gnu/c_locale.h (__convert_from_v): Fix typo. |
| |
| 2007-05-24 Paolo Carlini <pcarlini@suse.de> |
| |
| * include/ext/concurrence.h: Use __GCC_HAVE_SYNC_COMPARE_AND_SWAP_*. |
| |
| 2007-05-24 Steve Ellcey <sje@cup.hp.com> |
| |
| * Makefile.in: Regenerate. |
| * configure: Regenerate. |
| * aclocal.m4: Regenerate. |
| * include/Makefile.in: Regenerate. |
| * libmath/Makefile.in: Regenerate. |
| * libsupc++/Makefile.in: Regenerate. |
| * po/Makefile.in: Regenerate. |
| * src/Makefile.in: Regenerate. |
| * testsuite/Makefile.in: Regenerate. |
| |
| 2007-05-24 Paolo Carlini <pcarlini@suse.de> |
| |
| * config/locale/gnu/c_locale.h (__convert_from_v): Only switch to the |
| "C" locale if the current one isn't already "C" (for old glibcs). |
| * config/os/gnu-linux/ctype_noninline.h (ctype<char>::classic_table, |
| ctype<char>::ctype(__c_locale, const mask*, bool, size_t), |
| ctype<char>::ctype(const mask*, bool, size_t)): Likewise, for generic |
| locale model. |
| * config/locale/gnu/messages_members.h |
| (messages<>::messages(__c_locale, const char*, size_t), |
| messages_byname<_CharT>::messages_byname(const char*, size_t)): |
| Only dynamically allocate memory if __s != "C". |
| * config/locale/gnu/time_members.h |
| (__timepunct<_CharT>::__timepunct(__c_locale, const char*, size_t)): |
| Likewise. |
| * config/locale/generic/time_members.h |
| (__timepunct<_CharT>::__timepunct(__c_locale, const char*, size_t)): |
| Likewise. |
| |
| * testsuite/util/testsuite_allocator.h: Revert last change. |
| |
| 2007-05-22 Paolo Carlini <pcarlini@suse.de> |
| |
| * testsuite/util/testsuite_allocator.h (check_new): Assign false |
| to new_called. |
| (check_delete): Likewise for delete_called. |
| |
| 2007-05-21 Paolo Carlini <pcarlini@suse.de> |
| |
| * config/locale/gnu/c_locale.h: Do not include <cstdarg>, use builtins. |
| * config/locale/generic/c_locale.h: Likewise. |
| |
| 2007-05-21 Paolo Carlini <pcarlini@suse.de> |
| |
| PR libstdc++/31621 |
| * acinclude.m4 ([GLIBCXX_CHECK_LINKER_FEATURES]): Use the C compiler. |
| * configure: Regenerate. |
| |
| 2007-05-20 Paolo Carlini <pcarlini@suse.de> |
| |
| * include/bits/stl_algo.h: Shuffle the functions to better match the |
| order in the standard. |
| |
| 2007-05-17 Paolo Carlini <pcarlini@suse.de> |
| |
| * config/locale/gnu/c_locale.h: Do not include <libintl.h>. |
| * config/locale/gnu/messages_members.h: Do it here. |
| |
| * config/locale/gnu/c_locale.h: Do not include <cstdio>, use |
| the builtins. |
| * config/locale/generic/c_locale.h: Likewise. |
| |
| 2007-05-17 Benjamin Kosnik <bkoz@redhat.com> |
| |
| * acinclude.m4 (GLIBCXX_CHECK_COMPILER_FEATURES): Add -g to |
| compile flags, move code to test to global scope. |
| * configure: Regenerate. |
| |
| 2007-05-17 Benjamin Kosnik <bkoz@redhat.com> |
| |
| * testsuite/21_strings/char_traits/requirements/wchar_t/typedefs.cc: |
| Fix dg bits. |
| * testsuite/21_strings/char_traits/requirements/char/typedefs.cc: Same. |
| |
| 2007-05-17 Paolo Carlini <pcarlini@suse.de> |
| |
| * include/bits/stl_algobase.h (mismatch): Move... |
| * include/bits/stl_algo.h: ... here. |
| |
| 2007-05-17 Benjamin Kosnik <bkoz@redhat.com> |
| |
| * include/tr1/cmath: Guard special math with |
| __GXX_EXPERIMENTAL_CXX0X__. |
| * testsuite/26_numerics/headers/cmath/types_std_c++0x_neg.cc: |
| Remove xfail. |
| |
| 2007-05-17 Paolo Carlini <pcarlini@suse.de> |
| |
| * include/bits/locale_facets.tcc (__pad<>::_S_pad): Minor tweaks, avoid |
| unnecessary casts, do widenings just in time. |
| |
| 2007-05-16 Benjamin Kosnik <bkoz@redhat.com> |
| |
| * acinclude.m4 (GLIBCXX_CHECK_COMPILER_FEATURES): Add a function |
| to the test code compiled with -ffunction-sections -fdata-sections. |
| * configure: Regenerate. |
| |
| * testsuite/22_locale/ctype/scan/wchar_t/1.cc: Remove |
| _GLIBCXX_USE_WCHAR_T guards as superfluous. |
| |
| * testsuite/20_util/make_signed/requirements/typedefs-1.cc: Add |
| _GLIBCXX_USE_WCHAR_T guards. |
| * testsuite/20_util/make_signed/requirements/typedefs-2.cc: Same. |
| * testsuite/20_util/make_unsigned/requirements/typedefs-1.cc: Same. |
| * testsuite/20_util/make_unsigned/requirements/typedefs-2.cc: Same. |
| |
| * testsuite/21_strings/char_traits/requirements/wchar_t/typedefs.cc: |
| Add. |
| * testsuite/21_strings/char_traits/typedefs/char/1.cc: Move... |
| * testsuite/21_strings/char_traits/requirements/char/typedefs.cc: |
| ...here. |
| * testsuite/21_strings/char_traits/typedefs: Remove. |
| * testsuite/21_strings/char_traits/typedefs/char: Remove. |
| |
| 2007-05-16 Benjamin Kosnik <bkoz@redhat.com> |
| |
| * docs/html/abi.html: Update for gcc-4.1.2 and gcc-4.2.0. |
| |
| 2007-05-14 Kaz Kojima <kkojima@gcc.gnu.org> |
| |
| * testsuite/tr1/5_numerical_facilities/special_functions/ |
| 17_hyperg/check_nan.cc: Add -mieee for sh. |
| |
| 2007-05-14 Paolo Carlini <pcarlini@suse.de> |
| |
| * testsuite/util/testsuite_io.h: Only include <ios>. |
| |
| 2007-05-14 Paolo Carlini <pcarlini@suse.de> |
| |
| * include/bits/allocator.h: Do not include cpp_type_traits.h. |
| |
| 2007-05-14 Paolo Carlini <pcarlini@suse.de> |
| |
| * include/bits/postypes.h (class fpos<>): Remove redundant forward |
| declaration. |
| |
| 2007-05-13 Paolo Carlini <pcarlini@suse.de> |
| |
| * include/bits/stl_tempbuf.h (return_temporary_buffer(_Tp*)): Inline. |
| |
| 2007-05-13 Paolo Carlini <pcarlini@suse.de> |
| |
| * include/tr1/type_traitsfwd.h: Fix include guard typo. |
| |
| 2007-05-11 Paolo Carlini <pcarlini@suse.de> |
| |
| * include/ext/pod_char_traits.h (char_traits<>::move): |
| Use __builtin_memmove. |
| * include/bits/locale_classes.h (locale::_Impl::_M_check_same_name, |
| collate_byname(const char*, size_t)): Use __builtin_strcmp. |
| * include/bits/locale_facets.h: Use __builtin_mem* and |
| __builtin_str* everywhere. |
| * include/bits/codecvt.h (codecvt_byname(const char*, size_t)): |
| Use __builtin_strcmp. |
| * include/bits/char_traits.h: Use __builtin_mem* everywhere. |
| * include/bits/fstream.tcc (basic_filebuf<>::underflow, imbue): |
| Use __builtin_memcpy and __builtin_memmove. |
| * include/bits/locale_facets_nonio.h (moneypunct_byname(const char*, |
| size_t __refs)): Use __builtin_strcmp. |
| * include/std/bitset (bitset<>::_M_do_reset): Use __builtin_memset. |
| * config/locale/gnu/c_locale.h: Use __builtin_strlen, __builtin_strcmp, |
| and __builtin_memcpy. |
| * config/locale/gnu/messages_members.h: Likewise. |
| * config/locale/gnu/time_members.h: Likewise. |
| * config/locale/generic/c_locale.h: Likewise. |
| * config/locale/generic/messages_members.h: Likewise. |
| * config/locale/generic/time_members.h: Likewise. |
| * config/os/gnu-linux/ctype_noninline.h: Likewise, avoid strdup. |
| * config/os/tpf/ctype_noninline.h: Likewise. |
| * config/locale/generic/codecvt_members.cc: Include <cstring>. |
| * config/locale/generic/ctype_members.cc: Likewise. |
| * config/locale/generic/collate_members.cc: Likewise. |
| * config/locale/gnu/c++locale_internal.h: Likewise. |
| * config/locale/darwin/ctype_members.cc: Likewise. |
| * src/ctype.cc: Likewise. |
| * testsuite/19_diagnostics/logic_error/what-1.cc: Likewise. |
| * testsuite/19_diagnostics/logic_error/what-2.cc: Likewise. |
| * testsuite/19_diagnostics/runtime_error/what-1.cc: Likewise. |
| * testsuite/19_diagnostics/runtime_error/what-2.cc: Likewise. |
| * testsuite/19_diagnostics/runtime_error/what-3.cc: Likewise. |
| * config/locale/gnu/messages_members.cc: Avoid strdup. |
| * config/locale/gnu/monetary_members.cc: Likewise. |
| * config/locale/gnu/time_members.cc: Likewise. |
| * config/locale/gnu/time_members.cc: Likewise. |
| * config/locale/generic/c_locale.cc: Likewise. |
| |
| 2007-05-11 Benjamin Kosnik <bkoz@redhat.com> |
| |
| * include/std/stdexcept: Remove extra spacing. |
| |
| * testsuite/19_diagnostics/stdexceptions.cc: Break into... |
| * testsuite/19_diagnostics/bad_exception: ...this. Populate. |
| * testsuite/19_diagnostics/logic_error: ... this. |
| * testsuite/19_diagnostics/logic_error/what-1.cc: ...this. |
| * testsuite/19_diagnostics/logic_error/what-2.cc: ...this. |
| * testsuite/19_diagnostics/runtime_error: ...this. |
| * testsuite/19_diagnostics/runtime_error/what-1.cc: ...this. |
| * testsuite/19_diagnostics/runtime_error/what-2.cc: ...this. |
| * testsuite/19_diagnostics/runtime_error/what-3.cc: ...this. |
| * testsuite/19_diagnostics/23591_thread-1.c: Move... |
| * testsuite/19_diagnostics/bad_exception/23591_thread-1.c: ...here. |
| |
| 2007-05-10 Paolo Carlini <pcarlini@suse.de> |
| |
| * 27_io/objects/wchar_t/11.cc: Include <cstring>. |
| * 27_io/objects/wchar_t/10.cc: Likewise. |
| * 27_io/objects/wchar_t/12.cc: Likewise. |
| * 27_io/basic_streambuf/sputbackc/char/9538.cc: Likewise. |
| * 27_io/basic_streambuf/sgetn/char/1.cc: Likewise. |
| * 27_io/basic_streambuf/overflow/char/1.cc: Likewise. |
| * 27_io/basic_streambuf/sgetc/char/1.cc: Likewise. |
| * 27_io/basic_streambuf/sputn/wchar_t/1.cc: Likewise. |
| * 27_io/basic_streambuf/sputn/char/1.cc: Likewise. |
| * 27_io/basic_ios/cons/char/3.cc: Likewise. |
| * 27_io/basic_stringbuf/setbuf/char/2.cc: Likewise. |
| * 27_io/basic_stringbuf/setbuf/char/3.cc: Likewise. |
| * 27_io/basic_stringbuf/setbuf/char/4.cc: Likewise. |
| * 27_io/basic_istream/extractors_character/char/4.cc: Likewise. |
| * 27_io/fpos/mbstate_t/1.cc: Likewise. |
| * 27_io/basic_filebuf/setbuf/char/2.cc: Likewise. |
| * 27_io/basic_filebuf/setbuf/char/3.cc: Likewise. |
| * 25_algorithms/copy/streambuf_iterators/char/2.cc: Likewise. |
| * 25_algorithms/copy/streambuf_iterators/char/4.cc: Likewise. |
| * 19_diagnostics/stdexceptions.cc: Likewise. |
| * 21_strings/char_traits/requirements/short/1.cc: Likewise. |
| * 21_strings/basic_string/compare/char/1.cc: Likewise. |
| * 21_strings/basic_string/capacity/1.cc: Likewise. |
| * ext/codecvt/char-1.cc: Likewise. |
| * ext/codecvt/char-2.cc: Likewise. |
| * ext/codecvt/1.cc: Likewise. |
| * ext/stdio_sync_filebuf/wchar_t/1.cc: Likewise. |
| * ext/stdio_sync_filebuf/char/1.cc: Likewise. |
| * ext/stdio_filebuf/char/2.cc: Likewise. |
| * ext/stdio_filebuf/char/10063-1.cc: Likewise. |
| * 22_locale/ctype/narrow/char/19955.cc: Likewise. |
| * 22_locale/codecvt/unshift/wchar_t/1.cc: Likewise. |
| * 22_locale/codecvt/unshift/wchar_t/2.cc: Likewise. |
| * 22_locale/codecvt/unshift/wchar_t/3.cc: Likewise. |
| * 22_locale/codecvt/unshift/wchar_t/4.cc: Likewise. |
| * 22_locale/codecvt/unshift/char/1.cc: Likewise. |
| * 22_locale/codecvt/length/wchar_t/1.cc: Likewise. |
| * 22_locale/codecvt/length/wchar_t/2.cc: Likewise. |
| * 22_locale/codecvt/length/wchar_t/3.cc: Likewise. |
| * 22_locale/codecvt/length/wchar_t/4.cc: Likewise. |
| * 22_locale/codecvt/length/wchar_t/5.cc: Likewise. |
| * 22_locale/codecvt/length/wchar_t/6.cc: Likewise. |
| * 22_locale/codecvt/length/wchar_t/7.cc: Likewise. |
| * 22_locale/codecvt/always_noconv/char/1.cc: Likewise. |
| * 22_locale/codecvt/encoding/char/1.cc: Likewise. |
| * 22_locale/codecvt/in/wchar_t/1.cc: Likewise. |
| * 22_locale/codecvt/in/wchar_t/2.cc: Likewise. |
| * 22_locale/codecvt/in/wchar_t/3.cc: Likewise. |
| * 22_locale/codecvt/in/wchar_t/4.cc: Likewise. |
| * 22_locale/codecvt/in/wchar_t/5.cc: Likewise. |
| * 22_locale/codecvt/in/wchar_t/6.cc: Likewise. |
| * 22_locale/codecvt/in/wchar_t/7.cc: Likewise. |
| * 22_locale/codecvt/in/wchar_t/8.cc: Likewise. |
| * 22_locale/codecvt/in/wchar_t/9.cc: Likewise. |
| * 22_locale/codecvt/in/char/1.cc: Likewise. |
| * 22_locale/codecvt/max_length/char/1.cc: Likewise. |
| * 22_locale/codecvt/out/wchar_t/1.cc: Likewise. |
| * 22_locale/codecvt/out/wchar_t/2.cc: Likewise. |
| * 22_locale/codecvt/out/wchar_t/3.cc: Likewise. |
| * 22_locale/codecvt/out/wchar_t/4.cc: Likewise. |
| * 22_locale/codecvt/out/wchar_t/5.cc: Likewise. |
| * 22_locale/codecvt/out/wchar_t/6.cc: Likewise. |
| * 22_locale/codecvt/out/wchar_t/7.cc: Likewise. |
| * 22_locale/codecvt/out/char/1.cc: Likewise. |
| * 22_locale/locale/cons/5.cc: Likewise. |
| * 22_locale/collate_byname/named_equivalence.cc: Likewise. |
| |
| 2007-05-07 Mark Mitchell <mark@codesourcery.com> |
| |
| * libstdc++-v3/libsupc++/cxxabi.h (_GLIBCXX_NOTHROW): New macro. |
| (__cxa_atexit): Use it. |
| |
| * testsuite/lib/libstdc++.exp (v3_target_compile_as_c): For |
| installed-tree testing, search more include directories. |
| |
| 2007-05-08 Benjamin Kosnik <bkoz@redhat.com> |
| |
| * include/std/type_traits (make_signed): Remove specializations |
| for floating point types. |
| (make_unsigned): Same. |
| * testsuite/20_util/make_signed/requirements/typedefs_neg.cc: Fix. |
| * testsuite/20_util/make_signed/requirements/typedefs-1.cc: Same. |
| * testsuite/20_util/make_signed/requirements/typedefs-2.cc: Same. |
| * testsuite/20_util/make_unsigned/requirements/typedefs_neg.cc: Same. |
| * testsuite/20_util/make_unsigned/requirements/typedefs-1.cc: Same. |
| * testsuite/20_util/make_unsigned/requirements/typedefs-2.cc: Same. |
| |
| 2007-05-08 Benjamin Kosnik <bkoz@redhat.com> |
| |
| * testsuite/26_numerics/headers/cmath/types_std_c++0x_neg.cc: New. |
| |
| 2007-05-08 Jason Merrill <jason@redhat.com> |
| |
| * libsupc++/cxxabi-internal.h: Remove, to be replaced by... |
| * libsupc++/cxxabi-forced.h: ...this new file. |
| * include/ext/vstring.tcc: Include cxxabi-forced.h instead. |
| * include/bits/istream.tcc: Likewise. |
| * include/bits/ostream.tcc: Likewise. |
| * include/bits/basic_string.tcc: Likewise. |
| * include/bits/ostream_insert.h: Likewise. |
| * include/bits/fstream.tcc: Likewise. |
| * include/std/bitset: Likewise. |
| * libsupc++/cxxabi.h: Restore previous contents. |
| * Makefile.am (headers): Add cxxabi-forced.h. |
| * Makefile.in: Regenerate. |
| |
| 2007-05-08 Benjamin Kosnik <bkoz@redhat.com> |
| |
| * testsuite/util/testsuite_abi.cc: Add CXXABI_1.3.2. |
| |
| * libsupc++/cxxabi-internal.h (__foreign_exception::__pure): To |
| __pure_virtual. |
| |
| 2007-05-07 Jason Merrill <jason@redhat.com> |
| |
| * include/bits/ostream.tcc (operator<<(char*)): Add __s. |
| |
| * config/abi/pre/gnu.ver: Fix symbol versions. |
| * config/abi/pre/gnu-versioned-namespace.ver: Likewise. |
| |
| 2007-05-07 Danny Smith <dannysmith@users.sourceforge.net> |
| |
| * config/os/mingw32/os_defines.h (NOMINMAX): Update comment. |
| |
| 2007-05-07 Jason Merrill <jason@redhat.com> |
| |
| PR c++/28145 |
| * libsupc++/cxxabi.h (__forced_unwind, __foreign_exception): |
| New classes. |
| * libsupc++/eh_exception.cc: Define their destructors. |
| * config/abi/pre/gnu.ver: Export their type_infos. |
| * config/abi/pre/gnu-versioned-namespace.ver: Likewise. |
| * libsupc++/eh_personality.cc: A handler for abi::__forced_unwind |
| matches a forced unwind, and a handler for abi::__foreign_exception |
| matches a foreign exception. |
| |
| * include/bits/istream.tcc: Rethrow forced unwind. |
| * include/bits/ostream.tcc: Likewise. |
| * include/bits/ostream_insert.h: Likewise. |
| * include/bits/basic_string.tcc (operator>>, getline): Likewise. |
| * include/bits/fstream.tcc (basic_filebuf::close): Likewise. |
| * include/ext/vstring.cc (operator>>, getline): Likewise. |
| * src/istream.cc: Likewise. |
| * src/compatibility.cc (basic_istream::ignore): Likewise. |
| * include/std/bitset (operator>>): Likewise. |
| * include/std/fstream (basic_filebuf::close): Remove throw() spec. |
| * libsupc++/cxxabi-internal.h: Split out from... |
| * libsupc++/cxxabi.h: ...here. |
| |
| 2007-05-07 Paolo Carlini <pcarlini@suse.de> |
| |
| * include/bits/stl_algobase.h: Do not include <cstring>. |
| (copy(const _Tp*, const _Tp*, _Tp*), __copy_b(const _Tp*, const _Tp*, |
| _Tp*)): Use __builtin_memmove. |
| (__fill_aux): Use __builtin_memset. |
| (equal(const _Tp*, const _Tp*, const _Tp*), |
| lexicographical_compare(const unsigned char*, const unsigned char*, |
| const unsigned char*, const unsigned char*)): Use __builtin_memcmp. |
| * include/bits/valarray_array.h: Do not include <cstring>. |
| (_Array_default_ctor<, true>::_S_do_it): Use __builtin_memset. |
| (_Array_copy_ctor<, true>::_S_do_it, _Array_copier<, true>::_S_do_it): |
| Use __builtin_memcpy. |
| * include/ext/algorithm |
| (__lexicographical_compare_3way(const unsigned char*, |
| const unsigned char*, const unsigned char*, const unsigned char*)): |
| Use __builtin_memcmp. |
| * testsuite/23_containers/vector/requirements/dr438/ |
| constructor_1_neg.cc: Adjust dg-error line number. |
| * testsuite/23_containers/vector/requirements/dr438/ |
| constructor_2_neg.cc: Likewise. |
| |
| 2007-05-07 Mark Mitchell <mark@codesourcery.com> |
| |
| * testsuite/lib/libstdc++.exp (v3_target_compile_as_c): For |
| installed-tree testing, search more include directories. |
| |
| * testsuite/22_locale/num_put/put/char/14220.cc: XFAIL on Solaris |
| 2.10. |
| * testsuite/22_locale/num_put/put/wchar_t/14220.cc: Likewise. |
| |
| * testsuite/lib/libstdc++.exp (v3_target_compile_as_c): In |
| installed-tree testing, use "remote_exec host", not "remote_exec |
| exec". Trip trailing newlines from output of -dumpversion and |
| -dumpmachine. |
| |
| 2007-05-07 Benjamin Kosnik <bkoz@redhat.com> |
| Howard Hinnant <hhinnant@apple.com> |
| |
| * include/std/type_traits: (make_signed, make_unsigned): Adjust |
| for enum sizes. |
| * testsuite/20_util/make_unsigned/requirements/typedefs.cc: Move to... |
| * testsuite/20_util/make_unsigned/requirements/typedefs-1.cc: ...here. |
| * testsuite/20_util/make_unsigned/requirements/typedefs-2.cc: Add, |
| compile with -funsigned-char -fshort-enums. |
| * testsuite/20_util/make_signed/requirements/typedefs.cc: Move to... |
| * testsuite/20_util/make_signed/requirements/typedefs-1.cc: ...here. |
| * testsuite/20_util/make_signed/requirements/typedefs-2.cc: Add, |
| compile with -funsigned-char -fshort-enums. |
| |
| * testsuite/20_util/headers/type_traits/types_std_c++0x_neg.cc: |
| Add a temporary xfail to this test for all platforms. |
| |
| 2007-05-06 Paolo Carlini <pcarlini@suse.de> |
| |
| * include/std/complex: Add missing extern template declarations. |
| * testsuite/26_numerics/complex/complex_inserters_extractors.cc: |
| Move... |
| * testsuite/26_numerics/complex/inserters_extractors/char/1.cc: |
| ... here. |
| * testsuite/26_numerics/complex/inserters_extractors/wchar_t/1.cc: |
| New. |
| |
| 2007-05-06 Paolo Carlini <pcarlini@suse.de> |
| |
| PR libstdc++/31834 |
| * testsuite/17_intro/headers/c++200x/all.cc: Protect inclusion |
| of C99 headers. |
| * testsuite/17_intro/headers/c++200x/all_multiple_inclusion.cc: |
| Likewise. |
| |
| 2007-05-06 Paolo Carlini <pcarlini@suse.de> |
| |
| * config/locale/generic/c_locale.cc: Don't use __builtin_huge_val* |
| when __*_HAS_INFINITY__ is false. |
| |
| 2007-05-04 Paolo Carlini <pcarlini@suse.de> |
| |
| * include/bits/stl_raw_storage_iter.h (class raw_storage_iterator): |
| Adjust template parameter name. |
| |
| 2007-05-04 Mark Mitchell <mark@codesourcery.com> |
| |
| * libsupc++/cxxabi.h (__cxa_atexit): Conditionalize exception |
| specification on #ifdef __cplusplus. |
| |
| 2007-05-04 Paolo Carlini <pcarlini@suse.de> |
| |
| * include/bits/stl_memory.h: Rename to stl_auto_ptr.h. |
| (__get_temporary_buffer, get_temporary_buffer, |
| return_temporary_buffer): Move... |
| * include/bits/stl_tempbuf.h: ... here. |
| * include/std/memory: Adjust includes. |
| * testsuite/20_util/auto_ptr/assign_neg.cc: Adjust dg-error line |
| numbers. |
| * include/Makefile.am: Adjust. |
| * include/Makefile.in: Regenerate. |
| |
| * testsuite/util/testsuite_iterators.h: Do not include the entire |
| <iterator>. |
| * include/bits/stl_iterator_base_types.h: Adjust includes. |
|