From 4a45799609fd7baec7bab20fc6b4e01addf884d7 Mon Sep 17 00:00:00 2001 From: Axel Spoerl Date: Thu, 18 Jan 2024 13:36:25 +0100 Subject: [PATCH] Add missing include in tst_QHttpHeaders A QMultiMap is used, while only qset.h is included. FTBFS w/o precompiled headers. Include qmap.h as well. Pick-to: 6.6 6.5 Change-Id: I5f6e1d204bfa94cc6a81f6883c7a7b0ee1e9963c Reviewed-by: Ivan Solovev (cherry picked from commit 84b792fa98b3a21119f16b0cd9443f90b1ad504d) Reviewed-by: Qt Cherry-pick Bot --- tests/auto/network/access/qhttpheaders/tst_qhttpheaders.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/auto/network/access/qhttpheaders/tst_qhttpheaders.cpp b/tests/auto/network/access/qhttpheaders/tst_qhttpheaders.cpp index 66e31d688b7..7a7e1da0a4b 100644 --- a/tests/auto/network/access/qhttpheaders/tst_qhttpheaders.cpp +++ b/tests/auto/network/access/qhttpheaders/tst_qhttpheaders.cpp @@ -5,6 +5,7 @@ #include +#include #include using namespace Qt::StringLiterals;