From 046ad5a4426ea1be7f7c04c0681ae62ef16c8599 Mon Sep 17 00:00:00 2001 From: Giuseppe D'Angelo Date: Fri, 7 Aug 2020 15:24:03 +0200 Subject: [PATCH] Improve QMultiMap docs a bit MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Change-Id: I170dc5de15dac61620aaed94f32226c158092dce Reviewed-by: MÃ¥rten Nordheim --- src/corelib/tools/qmultimap.qdoc | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/src/corelib/tools/qmultimap.qdoc b/src/corelib/tools/qmultimap.qdoc index 678dbfaee9..0de4a6c8fd 100644 --- a/src/corelib/tools/qmultimap.qdoc +++ b/src/corelib/tools/qmultimap.qdoc @@ -214,13 +214,20 @@ initializer list \a list. */ -/*! \fn template QMultiMap::QMultiMap(const typename std::multimap & other) +/*! \fn template QMultiMap::QMultiMap(const std::multimap &other) Constructs a copy of \a other. \sa toStdMultiMap() */ +/*! \fn template QMultiMap::QMultiMap(std::multimap &&other) + + Constructs a multi map by moving from \a other. + + \sa toStdMultiMap() +*/ + /*! \fn template std::multimap QMultiMap::toStdMap() const \obsolete Use toStdMultiMap() instead.