aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/projectexplorer/kit.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/projectexplorer/kit.h')
-rw-r--r--src/plugins/projectexplorer/kit.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/plugins/projectexplorer/kit.h b/src/plugins/projectexplorer/kit.h
index 9c5551d8c6..fc57688060 100644
--- a/src/plugins/projectexplorer/kit.h
+++ b/src/plugins/projectexplorer/kit.h
@@ -33,6 +33,8 @@
#include <QSet>
#include <QVariant>
+#include <memory>
+
namespace Utils {
class Environment;
class MacroExpander;
@@ -139,7 +141,7 @@ private:
QVariantMap toMap() const;
- Internal::KitPrivate *const d;
+ const std::unique_ptr<Internal::KitPrivate> d;
friend class KitInformation;
friend class KitManager;