diff options
author | fdumont <fdumont@138bc75d-0d04-0410-961f-82ee72b054a4> | 2014-01-13 20:07:22 +0000 |
---|---|---|
committer | fdumont <fdumont@138bc75d-0d04-0410-961f-82ee72b054a4> | 2014-01-13 20:07:22 +0000 |
commit | 85676e5081d8a35d3fde5c4abbf16be5040964d0 (patch) | |
tree | 37bca70b3e0b98a972d9cb2d910d3786b7926b66 /libstdc++-v3/ChangeLog | |
parent | 7986635822d172ab35a858b02fcd822afa41f628 (diff) | |
download | ppe42-gcc-85676e5081d8a35d3fde5c4abbf16be5040964d0.tar.gz ppe42-gcc-85676e5081d8a35d3fde5c4abbf16be5040964d0.zip |
2014-01-13 François Dumont <fdumont@gcc.gnu.org>
* include/debug/set.h (set): Implement C++11 allocator-aware
container requirements.
* include/debug/map.h (map): Likewise.
* include/debug/multiset.h (multiset): Likewise.
* include/debug/multimap.h (multimap): Likewise.
* include/debug/set.h (set::operator=(set&&)): Add noexcept and
fix implementation regarding management of safe iterators.
* include/debug/map.h (map::operator=(map&&)): Likewise.
* include/debug/multiset.h (multiset::operator=(multiset&&)): Likewise.
* include/debug/multimap.h (multimap::operator=(multimap&&)):
Likewise.
* include/debug/set.h (set::operator=(std::initializer_list<>)):
Rely on the same operator from normal mode.
* include/debug/map.h (map::operator=(std::initializer_list<>)):
Likewise.
* include/debug/multiset.h
(multiset::operator=(std::initializer_list<>)): Likewise.
* include/debug/multimap.h
(multimap::operator=(std::initializer_list<>)): Likewise.
* include/debug/set.h (set::swap(set&)): Add noexcept
specification, add allocator equality check.
* include/debug/map.h (map::swap(map&)): Likewise.
* include/debug/multiset.h (multiset::swap(multiset&)): Likewise.
* include/debug/multimap.h (multimap::swap(multimap&)): Likewise.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@206588 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libstdc++-v3/ChangeLog')
-rw-r--r-- | libstdc++-v3/ChangeLog | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index 78d99829759..43c2900d0d7 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,30 @@ +2014-01-13 François Dumont <fdumont@gcc.gnu.org> + + * include/debug/set.h (set): Implement C++11 allocator-aware + container requirements. + * include/debug/map.h (map): Likewise. + * include/debug/multiset.h (multiset): Likewise. + * include/debug/multimap.h (multimap): Likewise. + * include/debug/set.h (set::operator=(set&&)): Add noexcept and + fix implementation regarding management of safe iterators. + * include/debug/map.h (map::operator=(map&&)): Likewise. + * include/debug/multiset.h (multiset::operator=(multiset&&)): Likewise. + * include/debug/multimap.h (multimap::operator=(multimap&&)): + Likewise. + * include/debug/set.h (set::operator=(std::initializer_list<>)): + Rely on the same operator from normal mode. + * include/debug/map.h (map::operator=(std::initializer_list<>)): + Likewise. + * include/debug/multiset.h + (multiset::operator=(std::initializer_list<>)): Likewise. + * include/debug/multimap.h + (multimap::operator=(std::initializer_list<>)): Likewise. + * include/debug/set.h (set::swap(set&)): Add noexcept + specification, add allocator equality check. + * include/debug/map.h (map::swap(map&)): Likewise. + * include/debug/multiset.h (multiset::swap(multiset&)): Likewise. + * include/debug/multimap.h (multimap::swap(multimap&)): Likewise. + 2014-01-10 Jonathan Wakely <jwakely@redhat.com> PR libstdc++/59698 |