summaryrefslogtreecommitdiffstats
path: root/tests/auto/corelib/global/qglobal
diff options
context:
space:
mode:
authorGiuseppe D'Angelo <giuseppe.dangelo@kdab.com>2024-03-21 08:33:28 +0100
committerGiuseppe D'Angelo <giuseppe.dangelo@kdab.com>2024-03-22 02:54:15 +0100
commit44cbd84968c9dec387d3ea522c5a5eee5ea628e9 (patch)
tree6c2a48771a93144770eb7b388360c1fbe7109cab /tests/auto/corelib/global/qglobal
parente68edd6a07adf33db14c2d2f6e4e3785596fa496 (diff)
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 <thiago.macieira@intel.com>
Diffstat (limited to 'tests/auto/corelib/global/qglobal')
-rw-r--r--tests/auto/corelib/global/qglobal/tst_qglobal.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/auto/corelib/global/qglobal/tst_qglobal.cpp b/tests/auto/corelib/global/qglobal/tst_qglobal.cpp
index 40b075ec32..c2f2912144 100644
--- a/tests/auto/corelib/global/qglobal/tst_qglobal.cpp
+++ b/tests/auto/corelib/global/qglobal/tst_qglobal.cpp
@@ -12,8 +12,9 @@
#include <QString>
#include <QtVersion>
-#include <array>
#include <cmath>
+#include <limits>
+#include <type_traits>
class tst_QGlobal: public QObject
{