If the allocator-extended move constructor move-constructs each element
into the new container, the contents of the old container are left in
moved-from states. We cannot know if those states preserve the
container's ordering and uniqueness guarantees, so just erase all
moved-from elements.
libstdc++-v3/ChangeLog:
PR libstdc++/103501
* include/bits/stl_tree.h (_Rb_tree(_Rb_tree&&, false_type)):
Clear container if elements have been moved-from.
* testsuite/23_containers/multiset/allocator/103501.cc: New test.
* testsuite/23_containers/set/allocator/103501.cc: New test.
(cherry picked from commit
056551414a328b427c4bf4955b9a3832f344685c)
_M_move_data(__x, true_type());
else
{
+ constexpr bool __move = !__move_if_noexcept_cond<value_type>::value;
_Alloc_node __an(*this);
auto __lbd =
[&__an](const value_type& __cval)
return __an(std::move_if_noexcept(__val));
};
_M_root() = _M_copy(__x, __lbd);
+ if _GLIBCXX17_CONSTEXPR (__move)
+ __x.clear();
}
}
--- /dev/null
+// { dg-do run { target c++11 } }
+
+// PR libstdc++/103501
+
+#include <set>
+#include <testsuite_hooks.h>
+#include <testsuite_allocator.h>
+
+struct Y
+{
+ int i;
+
+ Y(int i) : i(i) { }
+ Y(const Y& y) noexcept : i(y.i) { }
+ Y(Y&& y) noexcept : i(y.i) { y.i = -y.i; }
+
+ bool operator<(const Y& rhs) const { return i < rhs.i; }
+};
+
+int main()
+{
+ using Alloc = __gnu_test::uneq_allocator<Y>;
+ std::multiset<Y, std::less<Y>, Alloc> s1{ {1, 2, 3}, Alloc(1)};
+ std::multiset<Y, std::less<Y>, Alloc> s2{ std::move(s1), Alloc(2) };
+ const Y* prev = nullptr;
+ for (const Y& y : s1)
+ {
+ if (prev)
+ VERIFY( !(y < *prev) );
+ prev = &y;
+ }
+}
--- /dev/null
+// { dg-do run { target c++11 } }
+
+// PR libstdc++/103501
+
+#include <set>
+#include <testsuite_hooks.h>
+#include <testsuite_allocator.h>
+
+struct X
+{
+ int i;
+
+ X(int i) : i(i) { }
+ X(const X& x) noexcept : i(x.i) { }
+ X(X&& x) noexcept : i(x.i) { x.i = -1; }
+
+ bool operator<(const X& rhs) const { return i < rhs.i; }
+};
+
+int main()
+{
+ using Alloc = __gnu_test::uneq_allocator<X>;
+ std::set<X, std::less<X>, Alloc> s1{ {1, 2, 3}, Alloc(1)};
+ std::set<X, std::less<X>, Alloc> s2{ std::move(s1), Alloc(2) };
+ const X* prev = nullptr;
+ for (const X& x : s1)
+ {
+ if (prev)
+ VERIFY( *prev < x );
+ prev = &x;
+ }
+}