summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/corelib/tools/qhash.h14
1 files changed, 5 insertions, 9 deletions
diff --git a/src/corelib/tools/qhash.h b/src/corelib/tools/qhash.h
index a1c1371e24..c6b82dbd33 100644
--- a/src/corelib/tools/qhash.h
+++ b/src/corelib/tools/qhash.h
@@ -185,9 +185,8 @@ struct MultiNode
MultiNode(MultiNode &&other)
: key(other.key),
- value(other.value)
+ value(qExchange(other.value, nullptr))
{
- other.value = nullptr;
}
MultiNode(const MultiNode &other)
@@ -217,16 +216,13 @@ struct MultiNode
void insertMulti(Args &&... args)
{
Chain *e = new Chain{ T(std::forward<Args>(args)...), nullptr };
- e->next = value;
- value = e;
+ e->next = qExchange(value, e);
}
template<typename ...Args>
void emplaceValue(Args &&... args)
{
value->value = T(std::forward<Args>(args)...);
}
-
- // compiler generated move operators are fine
};
template<typename Node>
@@ -1212,10 +1208,10 @@ public:
}
return *this;
}
- QMultiHash(QMultiHash &&other) noexcept : d(other.d), m_size(other.m_size)
+ QMultiHash(QMultiHash &&other) noexcept
+ : d(qExchange(other.d, nullptr)),
+ m_size(qExchange(other.m_size, 0))
{
- other.d = nullptr;
- other.m_size = 0;
}
QMultiHash &operator=(QMultiHash &&other) noexcept(std::is_nothrow_destructible<Node>::value)
{