diff options
author | Eike Ziller <eike.ziller@qt.io> | 2017-11-29 13:03:52 +0100 |
---|---|---|
committer | Tobias Hunger <tobias.hunger@qt.io> | 2017-11-29 12:09:49 +0000 |
commit | c1aa7458137c11db60a502eddd361c73e96e371a (patch) | |
tree | a96c145f823574a4dee96df81395f4cf8255b6e0 /tests/auto/algorithm/tst_algorithm.cpp | |
parent | 21b8e10814e69e45b7ff1fbe793a92590ad5ebd9 (diff) | |
download | qt-creator-c1aa7458137c11db60a502eddd361c73e96e371a.tar.gz |
Add missing include to algorithm test
Change-Id: Ia7302723a0ec41456ca99704b7f8c680f6893c5d
Reviewed-by: Tobias Hunger <tobias.hunger@qt.io>
Diffstat (limited to 'tests/auto/algorithm/tst_algorithm.cpp')
-rw-r--r-- | tests/auto/algorithm/tst_algorithm.cpp | 7 |
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 |