From 019eeff6a7d051427ad62a288f350e66471a0462 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sun, 2 Aug 2020 13:43:01 +0200 Subject: Remove std::unique_ptr alias --- src/server/RunContext.hpp | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) (limited to 'src/server/RunContext.hpp') diff --git a/src/server/RunContext.hpp b/src/server/RunContext.hpp index cf2bfe10..10414bde 100644 --- a/src/server/RunContext.hpp +++ b/src/server/RunContext.hpp @@ -24,6 +24,7 @@ #include "raul/RingBuffer.hpp" #include +#include #include namespace ingen { @@ -143,11 +144,11 @@ public: protected: void run(); - Engine& _engine; ///< Engine we're running in - Raul::RingBuffer* _event_sink; ///< Port updates from process context - Task* _task; ///< Currently executing task - UPtr _thread; ///< Thread (null for main run context) - unsigned _id; ///< Context ID + Engine& _engine; ///< Engine we're running in + Raul::RingBuffer* _event_sink; ///< Updates from process context + Task* _task; ///< Currently executing task + std::unique_ptr _thread; ///< Thread (or null for main) + unsigned _id; ///< Context ID FrameTime _start; ///< Start frame of this cycle, timeline relative FrameTime _end; ///< End frame of this cycle, timeline relative -- cgit v1.2.1