summaryrefslogtreecommitdiffstats
path: root/src/server/events/Disconnect.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/server/events/Disconnect.hpp')
-rw-r--r--src/server/events/Disconnect.hpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/server/events/Disconnect.hpp b/src/server/events/Disconnect.hpp
index 4b5f6aea..d6a455c8 100644
--- a/src/server/events/Disconnect.hpp
+++ b/src/server/events/Disconnect.hpp
@@ -22,6 +22,8 @@
#include "PortImpl.hpp"
#include "types.hpp"
+#include <memory>
+
namespace ingen {
namespace server {
@@ -67,7 +69,7 @@ public:
private:
const ingen::Disconnect _msg;
GraphImpl* _graph;
- UPtr<Impl> _impl;
+ std::unique_ptr<Impl> _impl;
MPtr<CompiledGraph> _compiled_graph;
};