X-Git-Url: http://git.sourceforge.jp/view?p=pf3gnuchains%2Fgcc-fork.git;a=blobdiff_plain;f=libstdc%2B%2B-v3%2FChangeLog;h=2b2d0634b9fc53e61a87a83a464a9deae899548e;hp=4365a432a28a78acdf19c4b4318a9379e5814ec0;hb=24a23b7314c23a37790377c6b7829d6bdb21a8c0;hpb=113bf78bc97a4effe454873eb6784ce5f34b98cb diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index 4365a432a28..2b2d0634b9f 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,855 @@ +2010-03-13 Paolo Carlini + + * include/tr1_impl/array (swap(array<>&, array<>&)): Use member swap. + + * include/bits/stl_algo.h: Improve comment. + +2010-03-12 Benjamin Kosnik + + * scripts/run_doxygen: Adjust. + * doc/doxygen/user.cfg.in: Adjust latex, xml prefs. + * doc/xml/api.xml: Update. + * doc/Makefile.am: Re-do stamp rules. + * doc/Makefile.in: Regenerate. + +2010-03-10 Paolo Carlini + + * include/bits/hashtable_policy.h (_Rehash_base<_Prime_rehash_policy, + _Hashtable>::reserve): Add, per DR 1189. + * include/bits/hashtable.h (_Hashtable<>::size_type, + _Hashtable<>::difference_type): Do not typedef from _Allocator. + * testsuite/23_containers/unordered_map/dr1189.cc: New. + * testsuite/23_containers/unordered_set/dr1189.cc: Likewise. + * testsuite/23_containers/unordered_multimap/dr1189.cc: Likewise. + * testsuite/23_containers/unordered_multiset/dr1189.cc: Likewise. + +2010-03-08 Paolo Carlini + + Revert: + 2010-02-11 Paolo Carlini + + PR libstdc++/41975, DR 579 + * include/bits/hashtable.h (_Hashtable<>::_M_erase_node): Remove. + (erase(const_iterator), erase(const_iterator, const_iterator)): + Change return type to void. + * include/debug/unordered_map: Adjust. + * include/debug/unordered_set: Likewise. + * testsuite/util/exception/safety.h: Likewise. + * testsuite/23_containers/unordered_map/erase/1.cc: Likewise. + * testsuite/23_containers/unordered_map/erase/24061-map.cc: Likewise. + * testsuite/23_containers/unordered_set/erase/1.cc: Likewise. + * testsuite/23_containers/unordered_set/erase/24061-map.cc: Likewise. + * testsuite/23_containers/unordered_multimap/erase/1.cc: Likewise. + * testsuite/23_containers/unordered_multimap/erase/24061-map.cc: + Likewise. + * testsuite/23_containers/unordered_multiset/erase/1.cc: Likewise. + * testsuite/23_containers/unordered_multiset/erase/24061-map.cc: + Likewise. + +2010-03-04 Paolo Carlini + + * testsuite/util/testsuite_container_traits.h (traits_base): Add + has_throwing_erase trait. + (traits, traits): Typedef the latter to true_type. + * testsuite/util/exception/safety.h (generation_prohibited): + Do not test vector::erase and deque::erase: can throw if + either copy constructor or assignment operator of value_type + throws. + * testsuite/23_containers/vector/requirements/exception/ + generation_prohibited.cc: Remove xfail. + * testsuite/23_containers/deque/requirements/exception/ + generation_prohibited.cc: Likewise. + + * include/ext/throw_allocator.h (hash<__gnu_cxx::throw_value_limit>:: + operator(), hash<__gnu_cxx::throw_value_random>::operator()): Pass + argument by const ref. + + * testsuite/util/testsuite_container_traits.h (traits, + traits, traits, traits, + traits, traits, + traits, traits): Typedef + consistently has_erase and has_insert as true_type. + + * testsuite/util/testsuite_container_traits.h + (traits, traits, + traits, traits): Do not wrongly + typedef has_size_type_constructor as true_type: the constructor + accepting a size_type actually gets the initial number of + buckets. + +2010-03-03 Benjamin Kosnik + + * doc/Makefile.am: Re-organize xml sources. + (doc-latex-doxygen): New. + (doc-pdf-doxygen): New. + (stamp-xml-doxygen, stamp-latex-doxygen): New. + * doc/Makefile.in: Regenerate. + * doc/doxygen/user.cfg.in: Add support here. + * doc/xml/manual/appendix_contributing.xml: Add specifics. + + * doc/xml/manual/concurrency.xml: New. + * doc/xml/manual/atomics.xml: New. + * doc/xml/manual/spine.xml: Adjust. + * doc/xml/manual/diagnostics.xml: Adjust. + +2010-03-03 Paolo Carlini + Jonathan Wakely + + * include/bits/unique_ptr.h (unique_ptr<>::get_deleter): Simplify + return type. + * testsuite/20_util/unique_ptr/modifiers/reset_neg.cc: Adjust + dg-error line number. + * testsuite/20_util/unique_ptr/assign/assign_neg.cc: Likewise. + +2010-03-02 Paolo Carlini + + * include/debug/bitset (hash): Minor tweaks. + * include/debug/vector (hash): Likewise. + * include/profile/bitset (hash): Likewise. + * include/profile/vector (hash): Likewise. + +2010-03-02 Paolo Carlini + + * include/bits/functional_hash.h (_Fnv_hash_base<>::hash): Change + to template. + * include/tr1/functional_hash.h (_Fnv_hash_base<>::hash): Likewise. + * include/bits/vector.tcc (hash): Adjust. + * include/bits/basic_string.h (hash): Likewise. + * include/std/bitset (hash): Likewise. + * src/hash-string-aux.cc (hash): Likewise. + +2010-03-02 Jonathan Wakely + + * include/std/mutex (lock_guard::lock_guard): Do not lock mutex when + adopt_lock_t constructor is used. + * testsuite/30_threads/lock_guard/cons/1.cc: New. + +2010-03-02 Paolo Carlini + + * include/bits/stl_bvector.h (hash>:: + operator()(const vector&)): Move definition... + * include/bits/vector.tcc: ... here. + +2010-03-02 Rainer Orth + + * testsuite/Makefile.am (check-DEJAGNU): Include de* in normal0 + dirs. + * testsuite/Makefile.in: Regenerate. + +2010-03-02 Paolo Carlini + + * include/bits/stl_bvector.h (hash>): Add. + * include/debug/vector (hash<__debug::vector>): + Likewise. + * include/profile/vector (hash<__profile::vector>): + Likewise. + * testsuite/23_containers/vector/bool/hash/1.cc: New. + + * include/std/bitset (hash>): Small tweaks. + (hash>): Add. + * include/debug/bitset (hash<__debug::bitset<_Nb>>): Forward to + hash>. + * include/profile/bitset (hash<__profile::bitset<_Nb>>): Likewise. + * testsuite/23_containers/bitset/hash/1.cc: Improve. + +2010-03-02 Jonathan Wakely + + PR libstdc++/43230 + * testsuite/30_threads/promise/members/set_value3.cc + (tester::~tester): Remove. + +2010-03-02 Paolo Carlini + + * include/std/bitset (_Base_bitset<>::_M_getdata()): Add. + (hash>): Add, use the latter. + * include/debug/bitset (hash<__debug::bitset<_Nb>>): Add. + * include/profile/bitset (hash<__profile::bitset<_Nb>>): Likewise. + * testsuite/23_containers/bitset/hash/1.cc: New. + +2010-03-02 Jonathan Wakely + + PR libstdc++/43183 + * include/bits/unique_ptr.h (reset): Fix as per working paper. + (operator*, operator->, operator[], operator bool, release): Use + pointer's null value instead of 0. + * testsuite/20_util/unique_ptr/assign/assign_neg.cc: Adjust. + * testsuite/20_util/unique_ptr/modifiers/reset_neg.cc: Adjust. + * testsuite/20_util/unique_ptr/modifiers/43183.cc: New. + +2010-03-01 Paolo Carlini + + * include/std/iomanip (get_money, put_money): Add in C++0x mode; tidy. + * testsuite/27_io/manipulators/extended/get_money/char/1.cc: New. + * testsuite/27_io/manipulators/extended/get_money/wchar_t/1.cc: + Likewise. + * testsuite/27_io/manipulators/extended/put_money/char/1.cc: Likewise. + * testsuite/27_io/manipulators/extended/put_money/wchar_t/1.cc: + Likewise. + +2010-03-01 Benjamin Kosnik + + * include/bits/atomicfwd_cxx.h: Add typedefs to group. + +2010-03-01 Rainer Orth + + PR libstdc++/32499 + * testsuite/Makefile.am (check-DEJAGNU + $(check_DEJAGNU_normal_targets)): Export AR, RANLIB. + * testsuite/Makefile.in: Regenerate. + +2010-02-28 Gerald Pfeifer + + * doc/html/ext/pb_ds/references.html: Adjust link to SGI's STL + site. + +2010-02-28 Paolo Carlini + + * src/hash-long-double-aux.cc (hash:: + operator()(long double)): Hash both -0 and +0 to 0. + +2010-02-25 Ed Smith-Rowland <3dw4rd@verizon.net> + + * include/bits/random.tcc (operator<<): Use max_digits10. + +2010-02-25 Ed Smith-Rowland <3dw4rd@verizon.net> + + * include/std/limits (__numeric_limits_base::max_digits10, + numeric_limits<>::max_digits10, numeric_limits<>::lowest): Add. + * src/limits.cc: Define max_digits10. + * config/abi/pre/gnu.ver: Adjust. + * testsuite/18_support/numeric_limits/dr559.cc: Test max_digits10 + and lowest too. + * testsuite/18_support/numeric_limits/lowest.cc: New. + * testsuite/18_support/numeric_limits/max_digits10.cc: New. + +2010-02-25 Paolo Carlini + + * include/bits/functional_hash.h (__hash_combine): Remove. + (_Fnv_hash_base<>::hash(const char*, size_t)): Add defaulted + hash parameter. + (_Fnv_hash::__hash_combine(const _Tp&, size_t)): Add. + * include/std/system_error (hash): Adjust. + * src/compatibility-c++0x.cc (hash): Likewise. + +2010-02-24 Benjamin Kosnik + + * doc/xml/faq.xml: Adjust structure for pdf index. + * doc/xml/manual/mt_allocator.xml: Same. + * doc/xml/manual/allocator.xml: Same. + * doc/xml/manual/ctype.xml: Same. + * doc/xml/manual/numerics.xml: Same. + * doc/xml/manual/codecvt.xml: Same. + * doc/xml/manual/intro.xml: Same. + * doc/xml/manual/shared_ptr.xml: Same. + * doc/xml/manual/status_cxxtr1.xml: Same. + * doc/xml/manual/auto_ptr.xml: Same. + * doc/xml/manual/internals.xml: Same. + * doc/xml/manual/status_cxx1998.xml: Same. + * doc/xml/manual/parallel_mode.xml: Same. + * doc/xml/manual/profile_mode.xml: Same. + * doc/xml/manual/containers.xml: Same. + * doc/xml/manual/io.xml: Same. + * doc/xml/manual/concurrency_extensions.xml: Same. + * doc/xml/manual/appendix_porting.xml: Same. + * doc/xml/manual/utilities.xml: Same. + * doc/xml/manual/support.xml: Same. + * doc/xml/manual/bitmap_allocator.xml: Same. + * doc/xml/manual/configure.xml: Same. + * doc/xml/manual/build_hacking.xml: Same. + * doc/xml/manual/evolution.xml: Same. + * doc/xml/manual/using.xml: Same. + * doc/xml/manual/debug.xml: Same. + * doc/xml/manual/localization.xml: Same. + * doc/xml/manual/strings.xml: Same. + * doc/xml/manual/debug_mode.xml: Same. + * doc/xml/manual/locale.xml: Same. + * doc/xml/manual/extensions.xml: Same. + * doc/xml/manual/appendix_contributing.xml: Same. + * doc/xml/manual/prerequisites.xml: Same. + * doc/xml/manual/messages.xml: Same. + * doc/xml/manual/diagnostics.xml: Same. + * doc/xml/manual/algorithms.xml: Same. + * doc/xml/manual/appendix_free.xml: Same. + * doc/xml/manual/iterators.xml: Same. + * doc/xml/manual/spine.xml: Same. + * doc/xml/manual/status_cxxtr24733.xml: Same. + * doc/xml/manual/status_cxx200x.xml: Same. + * doc/Makefile.am: Refactor. + * doc/Makefile.in: Regenerate. + + * include/bits/c++0x_warning.h: Tweak doxygen file markup. + +2010-02-24 Rainer Orth + + * testsuite/ext/new_allocator/deallocate_global.cc: Require + __cxa_atexit. + * testsuite/ext/throw_allocator/deallocate_global.cc: Likewise. + +2010-02-23 Benjamin Kosnik + + * doc/xml/manual/concurrency.xml: Move... + * doc/xml/manual/concurrency_extensions.xml: ...here. + * doc/xml/manual/extensions.xml: Adjust. + * doc/Makefile.am: Adjust. + * doc/Makefile.in: Regenerate. + +2010-02-23 Benjamin Kosnik + + * include/bits/random.h: Doxygen group markup fixes. + +2010-02-23 Paolo Carlini + + * include/bits/functional_hash.h (struct _Fnv_hash): Rename + to _Fnv_hash_base. + (struct _Fnv_hash): Add, derives from the latter. + (__hash_combine): Add. + (hash::operator()(float), hash::operator()(double)): + Adjust. + * include/bits/basic_string.h (hash, hash, + hash, hash): Adjust. + * src/hash-string-aux.cc: Adjust. + * src/compatibility-c++0x.cc (hash): Use __hash_combine. + * include/std/system_error (hash): Likewise. + * include/std/thread (struct hash): Add. + * include/tr1/functional_hash.h : Rename to _Fnv_hash_base. + (struct _Fnv_hash): Add, derives from the latter. + (hash::operator()(float), hash::operator()(double)): + Adjust. + * testsuite/30_threads/thread/id/hash.cc: New. + * testsuite/30_threads/thread/cons/assign_neg.cc: Adjust dg-error + line number. + * testsuite/30_threads/thread/cons/copy_neg.cc: Likewise. + +2010-02-22 Janis Johnson + + * src/compatibility-ldbl.cc: Include new hash-long-double-aux.cc. + +2010-02-22 Paolo Carlini + + * src/hash-aux.cc: Rename to... + * src/hash-string-aux.cc: ... this. + * src/hash-long-double-aux.cc: New. + * src/hash_c++0x.cc: Adjust. + * src/hash_tr1.cc: Likewise. + * src/compatibility-c++0x.cc: Likewise. + +2010-02-22 Benjamin Kosnik + + * doc/xml/class.txml: Adjust biblio markup. + * doc/xml/manual/allocator.xml: Same. + * doc/xml/manual/ctype.xml: Same. + * doc/xml/manual/codecvt.xml: Same. + * doc/xml/manual/backwards_compatibility.xml: Same. + * doc/xml/manual/abi.xml: Same. + * doc/xml/manual/shared_ptr.xml: Same. + * doc/xml/manual/profile_mode.xml: Same. + * doc/xml/manual/using_exceptions.xml: Same. + * doc/xml/manual/locale.xml: Same. + * doc/xml/manual/appendix_contributing.xml: Same. + * doc/xml/manual/messages.xml: Same. + * doc/Makefile.am (DBLATEX_FLAGS): Adjust. + * doc/Makefile.in: Regenerate. + +2010-02-22 François Dumont + + * doc/xml/manual/profile_mode.xml: Minor updates and fixes. + * doc/xml/manual/debug_mode.xml: Likewise. + * doc/xml/manual/test.xml: Likewise. + +2010-02-22 Paolo Carlini + + * include/tr1_impl/complex (arg): Use std::signbit only when + available. + +2010-02-22 Paolo Carlini + + * include/bits/functional_hash.h (hash, hash, + hash, hash, hash): Move, per + DR 1182 to... + * include/bits/basic_string.h: ... here. + * include/std/system_error: ... and here, respectively. + * src/hash-aux.cc (hash::operator()(long double)): + Move definition... + * src/hash_c++0x.cc: ... here, new file. + * src/hash_tr1.cc: ... and here, tweak includes. + * src/compatibility-c++0x.cc (hash, _Fnv_hash): Remove. + * src/Makefile.am: Adjust. + * src/Makefile.in: Regenerate. + * include/std/functional: Include . + * include/std/unordered_set: Remove redundant include. + * include/std/unordered_map: Likewise. + * include/tr1/functional_hash.h: Remove spurious trailing semicolon. + * testsuite/20_util/weak_ptr/comparison/cmp_neg.cc: Remove + dg-excess. + +2010-02-21 Paolo Carlini + + * include/std/complex (proj): Change return type per DR 1137. + (conj): Copy from tr1_impl, likewise adjust return type. + * include/tr1_impl/complex (conj): Remove. + * include/tr1/complex (conj): Add both overloads. + * testsuite/26_numerics/complex/dr781.cc: Rename to... + * testsuite/26_numerics/complex/dr781_dr1137.cc: ... this, and extend. + + * include/tr1_impl/complex (arg): Optimize. + +2010-02-21 Paolo Carlini + + * testsuite/20_util/is_trivial/requirements/typedefs.cc: New. + * testsuite/20_util/is_trivial/requirements/ + explicit_instantiation.cc: Likewise. + * testsuite/20_util/is_pod/value.cc: Likewise. + * testsuite/20_util/is_pod/requirements/typedefs.cc: Likewise. + * testsuite/20_util/is_pod/requirements/ + explicit_instantiation.cc: Likewise. + * testsuite/20_util/is_standard_layout/requiremenents/ + typedefs.cc: Likewise. + * testsuite/20_util/is_standard_layout/requiremenents/ + explicit_instantiation.cc: Likewise. + +2010-02-20 Manuel López-Ibáñez + + PR c++/35669 + * testsuite/18_support/headers/cstddef/macros.cc: Add + -Wno-conversion-null. + +2010-02-19 Paolo Carlini + + * include/tr1_impl/array (array): Add pointer and const_pointer + typedefs in C++0x mode, per DR 1306. + * testsuite/util/testsuite_containers.h (basic_types): Add pointer + and const_pointer typedefs. + (pointer_aware_types): Remove. + * testsuite/util/testsuite_container_traits.h: Adjust. + +2010-02-19 Paolo Carlini + + * include/bits/stl_algo.h (for_each): Implement resolution of DR 1110. + * testsuite/25_algorithms/for_each/1.cc: New. + +2010-02-19 Paolo Carlini + + * include/bits/shared_ptr_base.h (__weak_ptr): Remove deleted + comparison operators, per DR 1256. + * include/bits/shared_ptr.h (weak_ptr): Likewise. + * testsuite/20_util/weak_ptr/comparison/cmp_neg.cc: Adjust. + +2010-02-18 Benjamin Kosnik + + * scripts/run_doxygen: Add shortnames option. + * doc/Makefile.am (doc-man-doxygen): Use it. + (doc-html-doxygen): Use it. + (doc-xml-doxygen): Use it, but default to NO. + (doc-pdf-dblatex): Add. + * doc/Makefile.in: Regenerate. + * doc/doxygen/user.cfg.in: Update filelist. + * include/bits/locale_facets.h: Fix markup warning. + +2010-02-18 Benjamin Kosnik + + * doc/xml/manual/using.xml: Update. + * doc/xml/manual/status_cxx1998.xml: Same. + * doc/xml/manual/status_cxx200x.xml: Add link. + * doc/html/*: Regenerate. + + * testsuite/17_intro/freestanding.cc: Add. + +2010-02-18 Paolo Carlini + + * libsupc++/typeinfo: Add system_header pragma. + * libsupc++/exception: Likewise. + * libsupc++/cxxabi-forced.h: Likewise. + * libsupc++/new: Likewise. + * libsupc++/cxxabi.h: Likewise. + * libsupc++/initializer_list: Likewise. + +2010-02-18 Paolo Carlini + + * libsupc++/nested_exception.h: Fix include. + +2010-02-17 Benjamin Kosnik + + * doc/xml/manual/appendix_contributing.xml: Update markup rules + for quoting and functions. + +2010-02-17 Chris Jefferson + + * include/bits/locale_facets.h (__convert_to_v): Add empty + exception-specification. + +2010-02-17 Paolo Carlini + + * include/std/limits: Implement resolution of DR 559 (CD1) in + C++0x mode. + * testsuite/18_support/numeric_limits/dr559.cc: New. + +2010-02-16 Benjamin Kosnik + + * src/ios_locale.cc: Fixes for -pedantic. + * src/system_error.cc: Same. + * src/locale.cc: Same. + * src/list.cc: Same. + * src/locale_facets.cc: Same. + * src/locale_init.cc: Same. + * src/ios.cc: Same. + * config/locale/darwin/ctype_members.cc: Same. + * config/locale/gnu/collate_members.cc: Same. + * config/locale/gnu/ctype_members.cc: Same. + * config/locale/gnu/c_locale.cc: Same. + * config/locale/gnu/monetary_members.cc: Same. + * config/locale/gnu/time_members.cc: Same. + * config/locale/ieee_1003.1-2001/c_locale.cc: Same. + * config/locale/generic/collate_members.cc: Same. + * config/locale/generic/ctype_members.cc: Same. + * config/locale/generic/c_locale.cc: Same. + * config/locale/generic/monetary_members.cc: Same. + * config/locale/generic/time_members.cc: Same. + * config/io/basic_file_stdio.cc: Same. + + * libsupc++/pbase_type_info.cc: Fixes for -fno-rtti. + * libsupc++/pointer_type_info.cc: Same. + * libsupc++/eh_personality.cc: Same. + + * include/std/system_error: Throw spacing. + * include/bits/locale_classes.h: Same. + * include/bits/locale_facets.h: Same. + * include/bits/ios_base.h: Same. + + * testsuite/17_intro/headers/c++200x/all_no_rtti.cc: New. + * testsuite/17_intro/headers/c++1998/all_no_rtti.cc: New. + +2010-02-16 Paolo Carlini + + * include/bits/random.h (linear_congruential_engine(_Sseq&), + mersenne_twister_engine(_Sseq&), subtract_with_carry_engine(_Sseq&)): + Do not enable for the type itself. + (discard_block_engine(_Sseq&), independent_bits_engine(_Sseq&), + shuffle_order_engine(_Sseq&)): Do not enable for the type itself too. + (linear_congruential_engine<>::seed(_Sseq&), + mersenne_twister_engine<>::seed(_Sseq&), + subtract_with_carry_engine<>::seed(_Sseq&)): Use enable_if on the + return type. + (discard_block_engine<>::seed(_Sseq&), + independent_bits_engine<>::seed(_Sseq&), + shuffle_order_engine<>::seed(_Sseq&)): Do not use enable_if. + * include/bits/random.tcc: Adjust definitions. + * testsuite/26_numerics/random/independent_bits_engine/cons/copy.cc: + New. + * testsuite/26_numerics/random/subtract_with_carry_engine/cons/ + copy.cc: Likewise. + * testsuite/26_numerics/random/discard_block_engine/cons/ + copy.cc: Likewise. + * testsuite/26_numerics/random/mersenne_twister_engine/cons/ + copy.cc: Likewise. + * testsuite/26_numerics/random/linear_congruential_engine/cons/ + copy.cc: Likewise. + * testsuite/26_numerics/random/shuffle_order_engine/cons/ + copy.cc: Likewise. + + * testsuite/26_numerics/random/independent_bits_engine/cons/ + base_move.cc: Minor tweaks. + * testsuite/26_numerics/random/independent_bits_engine/cons/seed1.cc: + Likewise. + * testsuite/26_numerics/random/independent_bits_engine/cons/seed2.cc: + Likewise. + * testsuite/26_numerics/random/independent_bits_engine/cons/ + base_copy.cc: Likewise. + * testsuite/26_numerics/random/independent_bits_engine/cons/ + default.cc: Likewise. + * testsuite/26_numerics/random/independent_bits_engine/cons/ + seed_seq.cc: Likewise. + * testsuite/26_numerics/random/subtract_with_carry_engine/cons/ + seed1.cc: Likewise. + * testsuite/26_numerics/random/subtract_with_carry_engine/cons/ + seed2.cc: Likewise. + * testsuite/26_numerics/random/subtract_with_carry_engine/cons/ + default.cc: Likewise. + * testsuite/26_numerics/random/subtract_with_carry_engine/cons/ + seed_seq.cc: Likewise. + * testsuite/26_numerics/random/discard_block_engine/cons/base_move.cc: + Likewise. + * testsuite/26_numerics/random/discard_block_engine/cons/seed1.cc: + Likewise. + * testsuite/26_numerics/random/discard_block_engine/cons/seed2.cc: + Likewise. + * testsuite/26_numerics/random/discard_block_engine/cons/base_copy.cc: + Likewise. + * testsuite/26_numerics/random/discard_block_engine/cons/default.cc: + Likewise. + * testsuite/26_numerics/random/discard_block_engine/cons/seed_seq.cc: + Likewise. + * testsuite/26_numerics/random/mersenne_twister_engine/cons/seed1.cc: + Likewise. + * testsuite/26_numerics/random/mersenne_twister_engine/cons/seed2.cc: + Likewise. + * testsuite/26_numerics/random/mersenne_twister_engine/cons/ + default.cc: Likewise. + * testsuite/26_numerics/random/mersenne_twister_engine/cons/ + seed_seq.cc: Likewise. + * testsuite/26_numerics/random/linear_congruential_engine/cons/ + seed1.cc: Likewise. + * testsuite/26_numerics/random/linear_congruential_engine/cons/ + seed2.cc: Likewise. + * testsuite/26_numerics/random/linear_congruential_engine/cons/ + seed_seq.cc: Likewise. + * testsuite/26_numerics/random/shuffle_order_engine/cons/base_move.cc: + Likewise. + * testsuite/26_numerics/random/shuffle_order_engine/cons/seed1.cc: + Likewise. + * testsuite/26_numerics/random/shuffle_order_engine/cons/seed2.cc: + Likewise. + * testsuite/26_numerics/random/shuffle_order_engine/cons/base_copy.cc: + Likewise. + * testsuite/26_numerics/random/shuffle_order_engine/cons/default.cc: + Likewise. + * testsuite/26_numerics/random/shuffle_order_engine/cons/seed_seq.cc: + Likewise. + +2010-02-16 Paolo Carlini + + * include/bits/unique_ptr.h: (unique_ptr<>:: + unique_ptr(const unique_ptr<_Up, _Up_Deleter>&), + operator=(const unique_ptr<_Up, _Up_Deleter>&)): Remove, redundant, + per DR 1303. + * include/bits/shared_ptr.h (shared_ptr<>:: + shared_ptr(const unique_ptr<_Up, _Up_Deleter>&), + operator=(const unique_ptr<_Up, _Up_Deleter>&)): Likewise. + * include/bits/shared_ptr_base.h (__shared_ptr<>:: + __shared_ptr(const unique_ptr<_Up, _Up_Deleter>&), + operator=(const unique_ptr<_Up, _Up_Deleter>&)): Likewise. + * testsuite/20_util/unique_ptr/modifiers/reset_neg.cc: Adjust. + * testsuite/20_util/unique_ptr/assign/assign_neg.cc: Likewise. + * testsuite/20_util/shared_ptr/cons/unique_ptr_neg.cc: Likewise. + * testsuite/20_util/shared_ptr/assign/unique_ptr_lvalue_neg.cc: + Likewise. + +2010-02-15 Paolo Carlini + + * testsuite/ext/median.cc: Adjust. + +2010-02-15 Paolo Carlini + + * include/bits/stl_algo.h (__median): Move... + * include/ext/algorithm: ... here, being an SGI extension. + +2010-02-12 Jonathan Wakely + Paolo Carlini + + PR libstdc++/42819, DR 1315 + * include/std/future (async): Use std::result_of for the template + argument of the std::future return type; adjust everywhere. + * testsuite/30_threads/async/42819.cc: New. + * testsuite/30_threads/packaged_task/cons/assign_neg.cc: Adjust + dg-error line number. + * testsuite/30_threads/packaged_task/cons/copy_neg.cc: Likewise. + * testsuite/30_threads/future/cons/assign_neg.cc: Likewise. + * testsuite/30_threads/future/cons/copy_neg.cc: Likewise. + * testsuite/30_threads/promise/cons/assign_neg.cc: Likewise. + * testsuite/30_threads/promise/cons/assign_neg.cc: Likewise. + +2010-02-11 Paolo Carlini + + * config/abi/pre/gnu.ver: Revert last changes. + +2010-02-11 Jason Merrill + + * include/std/thread (~_Impl_base): Declare inline. + * libsupc++/nested_exception.h (~nested_exception): Likewise. + +2010-02-11 Paolo Carlini + + PR libstdc++/41975, DR 579 + * include/bits/hashtable.h (_Hashtable<>::_M_erase_node): Remove. + (erase(const_iterator), erase(const_iterator, const_iterator)): + Change return type to void. + * include/debug/unordered_map: Adjust. + * include/debug/unordered_set: Likewise. + * testsuite/util/exception/safety.h: Likewise. + * testsuite/23_containers/unordered_map/erase/1.cc: Likewise. + * testsuite/23_containers/unordered_map/erase/24061-map.cc: Likewise. + * testsuite/23_containers/unordered_set/erase/1.cc: Likewise. + * testsuite/23_containers/unordered_set/erase/24061-map.cc: Likewise. + * testsuite/23_containers/unordered_multimap/erase/1.cc: Likewise. + * testsuite/23_containers/unordered_multimap/erase/24061-map.cc: + Likewise. + * testsuite/23_containers/unordered_multiset/erase/1.cc: Likewise. + * testsuite/23_containers/unordered_multiset/erase/24061-map.cc: + Likewise. + +2010-02-11 Paolo Carlini + + * config/abi/pre/gnu.ver: Avoid exporting inadvertently + std::nested_exception symbols at GLIBCXX_3.4. + +2010-02-10 Jason Merrill + + Core issue 906 + * include/std/thread (~_Impl_base): Move defaulted dtor out of line. + * libsupc++/nested_exception.h (~nested_exception): Likewise. + * testsuite/18_support/nested_exception/throw_with_nested.cc: Likewise. + * testsuite/18_support/nested_exception/rethrow_if_nested.cc: Likewise. + +2010-02-10 Paolo Carlini + + * include/tr1/hashtable.h: Fold in include/tr1_impl/hashtable.h + contents. + * include/tr1_impl/hashtable.h: Remove. + * include/tr1_impl/hashtable_policy.h: Move and rename... + * include/tr1/hashtable_policy.h: ... here. + * include/tr1_impl/unordered_map: Move and rename... + * include/tr1/unordered_map.h: ... here. + * include/tr1_impl/unordered_set: Move and rename... + * include/tr1/unordered_set.h: ... here. + * include/tr1_impl/unordered_map: Move and rename... + * include/tr1/unordered_map.h: ... here. + * include/tr1/unordered_map: Adjust. + * include/tr1/unordered_set: Likewise. + * include/Makefile.am: Adjust. + * include/Makefile.in: Regenerate. + + * include/std/c++0x_warning.h: Move... + * include/bits/c++0x_warning.h: ... here. + * include/debug/unordered_map: Adjust. + * include/debug/unordered_set: Likewise. + * include/std/tuple: Likewise. + * include/std/system_error: Likewise. + * include/std/forward_list: Likewise. + * include/std/thread: Likewise. + * include/std/type_traits: Likewise. + * include/std/future: Likewise. + * include/std/regex: Likewise. + * include/std/atomic: Likewise. + * include/std/ratio: Likewise. + * include/std/random: Likewise. + * include/std/unordered_map: Likewise. + * include/std/chrono: Likewise.: Likewise. + * include/std/condition_variable: Likewise. + * include/std/mutex: Likewise. + * include/std/unordered_set: Likewise. + * include/std/array: Likewise. + * include/profile/unordered_map: Likewise. + * include/profile/unordered_set: Likewise. + * include/c_global/cinttypes: Likewise. + * include/c_global/ctgmath: Likewise. + * include/c_global/cfenv: Likewise. + * include/c_global/cstdint: Likewise. + * include/c_global/cstdbool: Likewise. + * include/c_global/ccomplex: Likewise. + + * include/bits/shared_ptr.h: Do not include + at all, the file is not meant to be included by the users. + * include/bits/functional_hash.h: Likewise. + * include/bits/unique_ptr.h: Likewise. + * include/bits/forward_list.h: Likewise. + + * testsuite/29_atomics/atomic/cons/assign_neg.cc: Adjust dg-* + line numbers. + * testsuite/29_atomics/atomic/cons/copy_neg.cc: Likewise. + * testsuite/23_containers/forward_list/requirements/dr438/ + assign_neg.cc: Likewise. + * testsuite/23_containers/forward_list/requirements/dr438/ + insert_neg.cc: Likewise. + * testsuite/23_containers/forward_list/requirements/dr438/ + constructor_1_neg.cc: Likewise. + * testsuite/23_containers/forward_list/requirements/dr438/ + constructor_2_neg.cc: Likewise. + * testsuite/20_util/unique_ptr/modifiers/reset_neg.cc: Likewise. + * testsuite/20_util/unique_ptr/assign/assign_neg.cc: Likewise. + +2010-02-10 Paolo Carlini + + * include/bits/hashtable.h: Fold in include/tr1_impl/hashtable.h + for C++0x use. + * include/bits/hashtable_policy.h: New, copy and adjust for + C++0x use, include/tr1_impl/hashtable_policy.h; fix erase and + insert member functions per n3000. + * include/bits/unordered_map.h: Likewise for include/tr1_impl/ + unordered_map. + * include/bits/unordered_set.h: Likewise for include/tr1_impl/ + unordered_set. + * include/Makefile.am: Adjust. + * include/Makefile.in: Regenerate. + * include/tr1/unordered_map: Adjust. + * include/tr1/unordered_set: Likewise. + * include/tr1_impl/unordered_map: Adjust, now used only by tr1. + * include/tr1_impl/hashtable: Likewise. + * include/tr1_impl/hashtable_policy.h: Likewise. + * include/tr1_impl/unordered_set: Likewise. + * include/std/unordered_map: Adjust and simplify includes. + * include/std/unordered_set: Likewise. + * include/debug/unordered_map: Adjuse erase and insert members. + * include/debug/unordered_set: Likewise. + * include/profile/unordered_map: Likewise. + * include/profile/unordered_set: Likewise. + * testsuite/util/exception/safety.h: Fix for the updated erase and + insert member functions of the unordered_containers. + * testsuite/23_containers/unordered_map/erase/1.cc: New. + * testsuite/23_containers/unordered_map/erase/24061-map.cc: Likewise. + * testsuite/23_containers/unordered_map/insert/map_single.cc: + Likewise. + * testsuite/23_containers/unordered_map/insert/array_syntax.cc: + Likewise. + * testsuite/23_containers/unordered_map/insert/24061-map.cc: Likewise. + * testsuite/23_containers/unordered_map/insert/map_range.cc: Likewise. + * testsuite/23_containers/set/operators/1_neg.cc: Likewise. + * testsuite/23_containers/unordered_multimap/erase/1.cc: Likewise. + * testsuite/23_containers/unordered_multimap/erase/ + 24061-multimap.cc: Likewise. + * testsuite/23_containers/unordered_multimap/insert/ + 24061-multimap.cc: Likewise. + * testsuite/23_containers/unordered_multimap/insert/ + multimap_range.cc: Likewise. + * testsuite/23_containers/unordered_multimap/insert/ + multimap_single.cc: Likewise. + * testsuite/23_containers/unordered_set/erase/1.cc: Likewise. + * testsuite/23_containers/unordered_set/erase/24061-set.cc: Likewise. + * testsuite/23_containers/unordered_set/insert/set_single.cc: Likewise. + * testsuite/23_containers/unordered_set/insert/24061-set.cc: Likewise. + * testsuite/23_containers/unordered_set/insert/set_range.cc: Likewise. + * testsuite/23_containers/unordered_multiset/erase/1.cc: Likewise. + * testsuite/23_containers/unordered_multiset/erase/ + 24061-multiset.cc: Likewise. + * testsuite/23_containers/unordered_multiset/insert/ + 24061-multiset.cc: Likewise. + * testsuite/23_containers/unordered_multiset/insert/ + multiset_range.cc: Likewise. + * testsuite/23_containers/unordered_multiset/insert/ + multiset_single.cc: Likewise. + + * testsuite/23_containers/set/operators/1_neg.cc: Tweak dg-errors + to avoid spurious fails in debug-mode. + * testsuite/23_containers/map/operators/1_neg.cc: Likewise. + +2010-02-09 Benjamin Kosnik + + * include/std/streambuf: Adjust doxygen group markup. + * include/std/functional: Same. + * include/ext/vstring.h: Same. + * include/ext/pb_ds/assoc_container.hpp: Same. + * include/ext/stdio_filebuf.h: Same. + * include/ext/stdio_sync_filebuf.h: Same. + * include/bits/localefwd.h: Same. + * include/bits/functional_hash.h: Same. + * include/bits/locale_classes.h: Same. + * include/bits/locale_facets.h: Same. + * include/bits/ios_base.h: Same. + * include/bits/codecvt.h: Same. + * include/bits/locale_facets_nonio.h: Same. + + * testsuite/27_io/ios_base/cons/assign_neg.cc: Adjust line numbers. + * testsuite/27_io/ios_base/cons/copy_neg.cc: Same. + +2010-02-08 Benjamin Kosnik + + PR libstdc++/42460 + * include/tr1_impl/regex: Fix quoting issues in doxygen markup. + * include/bits/random.h: Fix multi-line doxygen function markup. + +2010-02-08 Matthias Klose + + PR libstdc++/42460 + * include/std/istream: Fix '\' quoting in doxygen markup. + 2010-02-08 Ed Smith-Rowland <3dw4rd@verizon.net> * include/bits/random.tcc (uniform_int_distribution<>::