From 24249c0b67a159890077be28470e4b68fa6170fc 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: [PATCH] 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. Pick-to: 6.3 6.2 Change-Id: I2272b6914e883e20d0989a1762eb1a5c1aef4e0e Reviewed-by: Fabian Kosmale --- 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 95e49da32ba..83cbc3095a5 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