From 21cb6287a774ba37d3eb6eab7adeb8d6a8a7e648 Mon Sep 17 00:00:00 2001 From: Thiago Macieira Date: Fri, 4 Nov 2022 20:20:51 -0700 Subject: [PATCH] QCryptographicHash: fix build: #include was missing MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit MSVC 2022. Must have been some indirect include I'm modifying. qcryptographichash.cpp(266): error C2079: 'QCryptographicHashPrivate::SmallByteArray::m_data' uses undefined class 'std::array' Change-Id: I3d74c753055744deb8acfffd172492257099f14d Reviewed-by: Volker Hilsheimer Reviewed-by: MÃ¥rten Nordheim --- src/corelib/tools/qcryptographichash.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/corelib/tools/qcryptographichash.cpp b/src/corelib/tools/qcryptographichash.cpp index 65aca959cb..7ccafaeb36 100644 --- a/src/corelib/tools/qcryptographichash.cpp +++ b/src/corelib/tools/qcryptographichash.cpp @@ -5,6 +5,8 @@ #include #include +#include + #include "../../3rdparty/sha1/sha1.cpp" #if defined(QT_BOOTSTRAPPED) && !defined(QT_CRYPTOGRAPHICHASH_ONLY_SHA1)