summaryrefslogtreecommitdiffstats
path: root/src/corelib/tools/qhash.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/corelib/tools/qhash.cpp')
-rw-r--r--src/corelib/tools/qhash.cpp17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/corelib/tools/qhash.cpp b/src/corelib/tools/qhash.cpp
index 4b9d120bb3..b6257c8907 100644
--- a/src/corelib/tools/qhash.cpp
+++ b/src/corelib/tools/qhash.cpp
@@ -941,6 +941,15 @@ void QHashData::checkSanity()
\sa clear()
*/
+/*!
+ \fn QHash::QHash(QHash<Key, T> &&other)
+
+ Move-constructs a QHash instance, making it point at the same
+ object that \a other was pointing to.
+
+ \since 5.2
+*/
+
/*! \fn QHash::QHash(std::initializer_list<std::pair<Key,T> > list)
\since 5.1
@@ -974,6 +983,14 @@ void QHashData::checkSanity()
Assigns \a other to this hash and returns a reference to this hash.
*/
+/*!
+ \fn QHash<Key, T> &QHash::operator=(QHash<Key, T> &&other)
+
+ Move-assigns \a other to this QHash instance.
+
+ \since 5.2
+*/
+
/*! \fn void QHash::swap(QHash<Key, T> &other)
\since 4.8