2018-05-18 François Dumont <fdumont@gcc.gnu.org>
commit9ac6bbfc69ca5cbd818e4c92cae326094385cf2b
authorfdumont <fdumont@138bc75d-0d04-0410-961f-82ee72b054a4>
Fri, 18 May 2018 20:49:49 +0000 (18 20:49 +0000)
committerfdumont <fdumont@138bc75d-0d04-0410-961f-82ee72b054a4>
Fri, 18 May 2018 20:49:49 +0000 (18 20:49 +0000)
treedccdc20181d0bddfcd6defe0be97fcf14d64da38
parent17847cffc7465c3120c33c0119a00a012b93ec2b
2018-05-18  François Dumont  <fdumont@gcc.gnu.org>

* include/bits/stl_tree.h
(_Rb_tree_impl(_Rb_tree_impl&&, _Node_allocator&&)): New.
(_Rb_tree(_Rb_tree&&, _Node_allocator&&, true_type)): New, use latter.
(_Rb_tree(_Rb_tree&&, _Node_allocator&&, false_type)): New.
(_Rb_tree(_Rb_tree&&, _Node_allocator&&)): Adapt, use latters.
* include/debug/map.h
(map(map&&, const_allocator_type&)): Add noexcept qualitication.
* include/debug/multimap.h
(multimap(multimap&&, const_allocator_type&)): Likewise.
* include/debug/set.h
(set(set&&, const_allocator_type&)): Likewise.
* include/debug/multiset.h
(multiset(multiset&&, const_allocator_type&)): Likewise.
* testsuite/23_containers/map/cons/noexcept_default_construct.cc:
Add checks.
* testsuite/23_containers/map/cons/noexcept_move_construct.cc:
Add checks.
* testsuite/23_containers/multimap/cons/noexcept_default_construct.cc:
Add checks.
* testsuite/23_containers/multimap/cons/noexcept_move_construct.cc:
Add checks.
* testsuite/23_containers/multiset/cons/noexcept_default_construct.cc:
Add checks.
* testsuite/23_containers/multiset/cons/noexcept_move_construct.cc:
Add checks.
* testsuite/23_containers/set/cons/noexcept_default_construct.cc:
Add checks.
* testsuite/23_containers/set/cons/noexcept_move_construct.cc:
Add checks.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@260382 138bc75d-0d04-0410-961f-82ee72b054a4
14 files changed:
libstdc++-v3/ChangeLog
libstdc++-v3/include/bits/stl_tree.h
libstdc++-v3/include/debug/map.h
libstdc++-v3/include/debug/multimap.h
libstdc++-v3/include/debug/multiset.h
libstdc++-v3/include/debug/set.h
libstdc++-v3/testsuite/23_containers/map/cons/noexcept_default_construct.cc
libstdc++-v3/testsuite/23_containers/map/cons/noexcept_move_construct.cc
libstdc++-v3/testsuite/23_containers/multimap/cons/noexcept_default_construct.cc
libstdc++-v3/testsuite/23_containers/multimap/cons/noexcept_move_construct.cc
libstdc++-v3/testsuite/23_containers/multiset/cons/noexcept_default_construct.cc
libstdc++-v3/testsuite/23_containers/multiset/cons/noexcept_move_construct.cc
libstdc++-v3/testsuite/23_containers/set/cons/noexcept_default_construct.cc
libstdc++-v3/testsuite/23_containers/set/cons/noexcept_move_construct.cc