summaryrefslogtreecommitdiffstats
path: root/src/corelib/tools
diff options
context:
space:
mode:
authorIvan Solovev <ivan.solovev@qt.io>2021-07-09 11:49:14 +0200
committerIvan Solovev <ivan.solovev@qt.io>2021-07-09 14:45:28 +0200
commit74d6c36eb7b80cfdecd80c5e6f8c1f0604f0b496 (patch)
tree2e1d462c9998d7bccd730f29c4c2d9cff71dd316 /src/corelib/tools
parent766d5d168fd45482638c03c4f841227e6e963e33 (diff)
QMap::erase - extend docs to specify iterator limitations
Task-number: QTBUG-91736 Pick-to: 6.2 6.1 Change-Id: I4a226e0bbcde91f3149db9a0697981169ec25276 Reviewed-by: Giuseppe D'Angelo <giuseppe.dangelo@kdab.com>
Diffstat (limited to 'src/corelib/tools')
-rw-r--r--src/corelib/tools/qmap.qdoc4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/corelib/tools/qmap.qdoc b/src/corelib/tools/qmap.qdoc
index 593c4ba544..e7b412b0d9 100644
--- a/src/corelib/tools/qmap.qdoc
+++ b/src/corelib/tools/qmap.qdoc
@@ -669,6 +669,8 @@
from the map, and returns an iterator to the next item in the
map.
+ \note The iterator \a pos \e must be valid and dereferencable.
+
\sa remove()
*/
@@ -679,6 +681,8 @@
[\a first, \a last) from the map.
Returns an iterator to the item in the map following the last removed element.
+ \note The range \c {[first, last)} \e must be a valid range in \c {*this}.
+
\sa remove()
*/