aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/cppcheck/cppcheckrunner.h
diff options
context:
space:
mode:
authorChristian Kandeler <[email protected]>2021-09-20 11:33:57 +0200
committerChristian Kandeler <[email protected]>2021-09-20 10:14:14 +0000
commit7e378513c1adcd9d6cde1bb815b6da235ed61fe7 (patch)
tree594a6a1ad9e74921f1f3d47e6172c8648d35013f /src/plugins/cppcheck/cppcheckrunner.h
parentfeb7b011df3d04661fe460ad7a3f532e5e50823d (diff)
Make some headers self-contained
This fixes the build in certain configurations, e.g. MSVC + qbs + Qt 6. Change-Id: Ia72dfd6dcfe1d1ecc08c40a3af6e60a935dc355f Reviewed-by: Eike Ziller <[email protected]>
Diffstat (limited to 'src/plugins/cppcheck/cppcheckrunner.h')
-rw-r--r--src/plugins/cppcheck/cppcheckrunner.h8
1 files changed, 3 insertions, 5 deletions
diff --git a/src/plugins/cppcheck/cppcheckrunner.h b/src/plugins/cppcheck/cppcheckrunner.h
index 0fd031bbce3..83aca95192f 100644
--- a/src/plugins/cppcheck/cppcheckrunner.h
+++ b/src/plugins/cppcheck/cppcheckrunner.h
@@ -25,14 +25,12 @@
#pragma once
+#include <utils/filepath.h>
+
#include <QHash>
#include <QTimer>
-namespace Utils {
-class QtcProcess;
-class FilePath;
-using FilePaths = QList<FilePath>;
-}
+namespace Utils { class QtcProcess; }
namespace Cppcheck {
namespace Internal {