diff options
author | hjk <hjk@qt.io> | 2018-12-17 13:13:15 +0100 |
---|---|---|
committer | hjk <hjk@qt.io> | 2018-12-17 13:21:49 +0000 |
commit | e6a71fb43d6beb533bacb3dc99c5322efa17c98e (patch) | |
tree | 37a67c6da83f538b8d66d950632c71b14b36f1d7 /src/plugins/cpptools | |
parent | 5b4205d15943091fbc4647410ae71b924d243a0b (diff) | |
download | qt-creator-e6a71fb43d6beb533bacb3dc99c5322efa17c98e.tar.gz |
CppTools: Compile fix
Amends ef8de6a384516c.
Change-Id: I50dc5b63867888ed258d6dedf643c3cc33b1014c
Reviewed-by: Ivan Donchevskii <ivan.donchevskii@qt.io>
Reviewed-by: Marco Bubke <marco.bubke@qt.io>
Diffstat (limited to 'src/plugins/cpptools')
-rw-r--r-- | src/plugins/cpptools/headerpathfilter.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/plugins/cpptools/headerpathfilter.cpp b/src/plugins/cpptools/headerpathfilter.cpp index 5997481f13..342ee773b7 100644 --- a/src/plugins/cpptools/headerpathfilter.cpp +++ b/src/plugins/cpptools/headerpathfilter.cpp @@ -25,6 +25,10 @@ #include "headerpathfilter.h" +#ifndef UNIT_TESTS +#include <coreplugin/icore.h> +#endif + #include <QRegularExpression> namespace CppTools { |