aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/projectexplorer/devicesupport/deviceprocesslist.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/projectexplorer/devicesupport/deviceprocesslist.h')
-rw-r--r--src/plugins/projectexplorer/devicesupport/deviceprocesslist.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/plugins/projectexplorer/devicesupport/deviceprocesslist.h b/src/plugins/projectexplorer/devicesupport/deviceprocesslist.h
index 77f71351ff..6e965b0450 100644
--- a/src/plugins/projectexplorer/devicesupport/deviceprocesslist.h
+++ b/src/plugins/projectexplorer/devicesupport/deviceprocesslist.h
@@ -30,6 +30,8 @@
#include <QAbstractItemModel>
#include <QList>
+#include <memory>
+
namespace ProjectExplorer {
namespace Internal { class DeviceProcessListPrivate; }
@@ -86,7 +88,7 @@ private:
void setFinished();
- Internal::DeviceProcessListPrivate * const d;
+ const std::unique_ptr<Internal::DeviceProcessListPrivate> d;
};
} // namespace ProjectExplorer