From 8414ba0fe46c6d7f4694ddcbc8c9ef33e35503ea Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?M=C3=A5rten=20Nordheim?= Date: Thu, 10 Feb 2022 12:58:22 +0100 Subject: QStringConverter: Add missing include on Windows It's relied on implicitly, which is no longer valid in dev. And may accidentally be broken in other branches. Change-Id: I2272b6914e883e20d0989a1762eb1a5c1aef4e0e Reviewed-by: Fabian Kosmale (cherry picked from commit 24249c0b67a159890077be28470e4b68fa6170fc) Reviewed-by: Qt Cherry-pick Bot --- src/corelib/text/qstringconverter.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/corelib/text/qstringconverter.cpp b/src/corelib/text/qstringconverter.cpp index 95e49da32b..83cbc3095a 100644 --- a/src/corelib/text/qstringconverter.cpp +++ b/src/corelib/text/qstringconverter.cpp @@ -48,6 +48,9 @@ #ifdef Q_OS_WIN #include +#ifndef QT_BOOTSTRAPPED +#include +#endif // !QT_BOOTSTRAPPED #endif #if __has_include() && __cplusplus > 201703L -- cgit v1.2.3