From 8c4c66f07fc9af1517472dc77a425bf16ffd962d Mon Sep 17 00:00:00 2001 From: Marc Mutz Date: Tue, 28 May 2024 08:33:22 +0200 Subject: [PATCH] qhttpmultipart_p.h: add missing qiodevice.h include MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit QIODevice is a base class of one of the classes defined in this header. QtCreator's clangd goes on a rampage in this header as a consequence. Amends the start of the public history. Pick-to: 6.7 6.5 6.2 5.15 Change-Id: I06c6a26dde7e7ae72b722136fcd666684733d40f Reviewed-by: MÃ¥rten Nordheim (cherry picked from commit 09fce4a587047ff03c7ca37dbb2bb8f71a18a75e) Reviewed-by: Qt Cherry-pick Bot --- src/network/access/qhttpmultipart_p.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/network/access/qhttpmultipart_p.h b/src/network/access/qhttpmultipart_p.h index 7a12ce84248..c8cc3f4f5aa 100644 --- a/src/network/access/qhttpmultipart_p.h +++ b/src/network/access/qhttpmultipart_p.h @@ -19,7 +19,9 @@ #include "QtCore/qshareddata.h" #include "qnetworkrequest_p.h" // for deriving QHttpPartPrivate from QNetworkHeadersPrivate #include "qhttpheadershelper_p.h" + #include "private/qobject_p.h" +#include #ifndef Q_OS_WASM QT_REQUIRE_CONFIG(http);