summaryrefslogtreecommitdiffstats
path: root/tests/auto/network/access
diff options
context:
space:
mode:
authorAxel Spoerl <axel.spoerl@qt.io>2024-01-18 13:36:25 +0100
committerAxel Spoerl <axel.spoerl@qt.io>2024-01-18 21:17:17 +0100
commit84b792fa98b3a21119f16b0cd9443f90b1ad504d (patch)
treec742190b32e7f228585ca5e60d6b629dd99729f0 /tests/auto/network/access
parentb148a362c36a9b34b0c21c60530353d6bf6b92cb (diff)
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.7 6.6 6.5 Change-Id: I5f6e1d204bfa94cc6a81f6883c7a7b0ee1e9963c Reviewed-by: Ivan Solovev <ivan.solovev@qt.io>
Diffstat (limited to 'tests/auto/network/access')
-rw-r--r--tests/auto/network/access/qhttpheaders/tst_qhttpheaders.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/auto/network/access/qhttpheaders/tst_qhttpheaders.cpp b/tests/auto/network/access/qhttpheaders/tst_qhttpheaders.cpp
index 66e31d688b..7a7e1da0a4 100644
--- a/tests/auto/network/access/qhttpheaders/tst_qhttpheaders.cpp
+++ b/tests/auto/network/access/qhttpheaders/tst_qhttpheaders.cpp
@@ -5,6 +5,7 @@
#include <QtTest/qtest.h>
+#include <QtCore/qmap.h>
#include <QtCore/qset.h>
using namespace Qt::StringLiterals;