aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/algorithm
diff options
context:
space:
mode:
authorEike Ziller <eike.ziller@qt.io>2017-11-29 13:03:52 +0100
committerTobias Hunger <tobias.hunger@qt.io>2017-11-29 12:09:49 +0000
commitc1aa7458137c11db60a502eddd361c73e96e371a (patch)
treea96c145f823574a4dee96df81395f4cf8255b6e0 /tests/auto/algorithm
parent21b8e10814e69e45b7ff1fbe793a92590ad5ebd9 (diff)
Add missing include to algorithm test
Change-Id: Ia7302723a0ec41456ca99704b7f8c680f6893c5d Reviewed-by: Tobias Hunger <tobias.hunger@qt.io>
Diffstat (limited to 'tests/auto/algorithm')
-rw-r--r--tests/auto/algorithm/tst_algorithm.cpp7
1 files changed, 4 insertions, 3 deletions
diff --git a/tests/auto/algorithm/tst_algorithm.cpp b/tests/auto/algorithm/tst_algorithm.cpp
index 9692c55c11..f87cc83a96 100644
--- a/tests/auto/algorithm/tst_algorithm.cpp
+++ b/tests/auto/algorithm/tst_algorithm.cpp
@@ -23,13 +23,14 @@
**
****************************************************************************/
-#include <array>
-#include <valarray>
-
#include <utils/algorithm.h>
#include <QtTest>
+#include <array>
+#include <memory>
+#include <valarray>
+
class tst_Algorithm : public QObject
{
Q_OBJECT