summaryrefslogtreecommitdiffstats
path: root/src/corelib/io/qdebug.h
diff options
context:
space:
mode:
authorJoerg Bornemann <joerg.bornemann@qt.io>2021-10-27 11:50:40 +0200
committerJoerg Bornemann <joerg.bornemann@qt.io>2021-10-27 15:00:31 +0200
commit51cc8a726762597ad4dbcc6af0d4eb277c4847b2 (patch)
tree4082d2c7017833e97d3cddb2803eb6b84ffb13c7 /src/corelib/io/qdebug.h
parent2c3cfa0ae71e8f21ea39a79364a57a103ca54d75 (diff)
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>
Diffstat (limited to 'src/corelib/io/qdebug.h')
-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 2b6522daa1..bfcdf42f0d 100644
--- a/src/corelib/io/qdebug.h
+++ b/src/corelib/io/qdebug.h
@@ -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);