]> git.ipfire.org Git - thirdparty/gcc.git/commit - libstdc++-v3/include/bits/forward_list.tcc
libstdc++: Implement DR 526 on [forward_]list remove_if/unique [PR 91620]
authorFrançois Dumont <fdumont@gcc.gnu.org>
Sat, 8 Aug 2020 20:22:00 +0000 (22:22 +0200)
committerFrançois Dumont <fdumont@gcc.gnu.org>
Tue, 11 Aug 2020 19:30:05 +0000 (21:30 +0200)
commit8b7af071b0cd4a6f8d989453ac81a4c3768d6343
tree1d6317f5ea0753b290fbf34d17aa28e304bc9d1b
parent8f9fd3c4ee5f9e9eb5045d35fcf189ccd214231c
libstdc++: Implement DR 526 on [forward_]list remove_if/unique [PR 91620]

Respect DR 526 in implementation of std::[forward_]list remove/remove_if/unique.
[forward_]list::remove was already implementing it but the implementation has
been modified to generalize the following pattern. All nodes to remove are
collected in an intermediate [forward_]list which purpose is just to be
detroyed once out of scope.

libstdc++-v3/ChangeLog:

PR libstdc++/91620
* include/bits/forward_list.tcc (forward_list<>::remove): Collect nodes
to destroy in an intermediate forward_list.
(forward_list<>::remove_if, forward_list<>::unique): Likewise.
* include/bits/list.tcc (list<>::remove, list<>::unique): Likewise.
(list<>::remove_if): Likewise.
* include/debug/forward_list (forward_list<>::_M_erase_after): Remove.
(forward_list<>::erase_after): Adapt.
(forward_list<>::remove, forward_list<>::remove_if): Collect nodes to
destroy in an intermediate forward_list.
(forward_list<>::unique): Likewise.
* include/debug/list (list<>::remove, list<>::unique): Likewise.
(list<>::remove_if): Likewise.
* testsuite/23_containers/forward_list/operations/91620.cc: New test.
* testsuite/23_containers/list/operations/91620.cc: New test.
libstdc++-v3/include/bits/forward_list.tcc
libstdc++-v3/include/bits/list.tcc
libstdc++-v3/include/debug/forward_list
libstdc++-v3/include/debug/list
libstdc++-v3/testsuite/23_containers/forward_list/operations/91620.cc [new file with mode: 0644]
libstdc++-v3/testsuite/23_containers/list/operations/91620.cc [new file with mode: 0644]