Fix QDebug operator<< for QMultiMap when Q_CLANG_QDOC is defined

This amends commit 8a8bf1b84e9a096993b892873eb62c735149f320.

Pick-to: 6.2
Change-Id: If863d33d055e0a743606d11859b11c112de105f1
Reviewed-by: Fabian Kosmale <fabian.kosmale@qt.io>
This commit is contained in:
Joerg Bornemann 2021-10-27 11:50:40 +02:00
parent 2c3cfa0ae7
commit 51cc8a7267

View File

@ -361,7 +361,7 @@ template <class Key, class T>
QDebug operator<<(QDebug debug, const QMap<Key, T> &map);
template <class Key, class T>
QDebug operator<<(QDebug debug, const QMultiMap(<Key, T> &map);
QDebug operator<<(QDebug debug, const QMultiMap<Key, T> &map);
template <class Key, class T>
QDebug operator<<(QDebug debug, const QHash<Key, T> &hash);