From 51cc8a726762597ad4dbcc6af0d4eb277c4847b2 Mon Sep 17 00:00:00 2001 From: Joerg Bornemann Date: Wed, 27 Oct 2021 11:50:40 +0200 Subject: [PATCH] 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 --- src/corelib/io/qdebug.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/corelib/io/qdebug.h b/src/corelib/io/qdebug.h index 2b6522daa16..bfcdf42f0dc 100644 --- a/src/corelib/io/qdebug.h +++ b/src/corelib/io/qdebug.h @@ -361,7 +361,7 @@ template QDebug operator<<(QDebug debug, const QMap &map); template -QDebug operator<<(QDebug debug, const QMultiMap( &map); +QDebug operator<<(QDebug debug, const QMultiMap &map); template QDebug operator<<(QDebug debug, const QHash &hash);