From 44cbd84968c9dec387d3ea522c5a5eee5ea628e9 Mon Sep 17 00:00:00 2001 From: Giuseppe D'Angelo Date: Thu, 21 Mar 2024 08:33:28 +0100 Subject: [PATCH] tst_qglobal: include what you use Fix the inclusions of stdlib headers to what is actually used in the test. Change-Id: I03ad4bdfd0b036bc4cee65b6bd2cd43ac7449722 Reviewed-by: Thiago Macieira --- tests/auto/corelib/global/qglobal/tst_qglobal.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/auto/corelib/global/qglobal/tst_qglobal.cpp b/tests/auto/corelib/global/qglobal/tst_qglobal.cpp index 40b075ec329..c2f29121440 100644 --- a/tests/auto/corelib/global/qglobal/tst_qglobal.cpp +++ b/tests/auto/corelib/global/qglobal/tst_qglobal.cpp @@ -12,8 +12,9 @@ #include #include -#include #include +#include +#include class tst_QGlobal: public QObject {