summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJoerg Bornemann <joerg.bornemann@qt.io>2021-10-27 11:50:40 +0200
committerQt Cherry-pick Bot <cherrypick_bot@qt-project.org>2021-10-27 15:33:38 +0000
commitf1c6d469ca52f4e9082d7bc55b1dbf19addba3c0 (patch)
tree7b89ea3985b496e229062a9108f03ee7e51a5f50 /src
parentd0e20f2f1bc94841be8bb649019baa26f83082d3 (diff)
Fix QDebug operator<< for QMultiMap when Q_CLANG_QDOC is defined
This amends commit 8a8bf1b84e9a096993b892873eb62c735149f320. Change-Id: If863d33d055e0a743606d11859b11c112de105f1 Reviewed-by: Fabian Kosmale <fabian.kosmale@qt.io> (cherry picked from commit 51cc8a726762597ad4dbcc6af0d4eb277c4847b2) Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
Diffstat (limited to 'src')
-rw-r--r--src/corelib/io/qdebug.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/corelib/io/qdebug.h b/src/corelib/io/qdebug.h
index 5885c068ae..83b0c16796 100644
--- a/src/corelib/io/qdebug.h
+++ b/src/corelib/io/qdebug.h
@@ -354,7 +354,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);