Qt container documenation: Misc fix for std comparison
std::map/multimap/unordered_map/unordered:multimap also need a 'Key'. Fixes: QTBUG-89904 Pick-to: 6.5 6.2 Change-Id: Ib653c941b671905762270c82218e50dfed8fc8c6 Reviewed-by: Mårten Nordheim <marten.nordheim@qt.io> (cherry picked from commit aeeb77650f05f90bb87ffe7e66cc2b6b3713ad2f) Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
This commit is contained in:
parent
ad27a2e579
commit
1a8769debc
@ -387,16 +387,16 @@
|
||||
\l{QHash}.
|
||||
|
||||
\row \li \l{QMap}<Key, T>
|
||||
\li Similar to std::map<T>.
|
||||
\li Similar to std::map<Key, T>.
|
||||
|
||||
\row \li \l{QMultiMap}<Key, T>
|
||||
\li Similar to std::multimap<T>.
|
||||
\li Similar to std::multimap<Key, T>.
|
||||
|
||||
\row \li \l{QHash}<Key, T>
|
||||
\li Most similar to std::unordered_map<T>.
|
||||
\li Most similar to std::unordered_map<Key, T>.
|
||||
|
||||
\row \li \l{QMultiHash}<Key, T>
|
||||
\li Most similar to std::unordered_multimap<T>.
|
||||
\li Most similar to std::unordered_multimap<Key, T>.
|
||||
|
||||
\endtable
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user