From 637161157c0072fda60a848a9b435dafcafbc34d Mon Sep 17 00:00:00 2001 From: Thomas Harte Date: Fri, 15 Jul 2022 16:29:29 -0400 Subject: [PATCH] Switch to slightly more sensical 'none' type. --- Concurrency/AsyncTaskQueue.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Concurrency/AsyncTaskQueue.hpp b/Concurrency/AsyncTaskQueue.hpp index c8b70be20..a9510abf7 100644 --- a/Concurrency/AsyncTaskQueue.hpp +++ b/Concurrency/AsyncTaskQueue.hpp @@ -44,7 +44,7 @@ template struct TaskQueueStorage { }; /// An implementation detail; provides a no-op implementation of time advances for TaskQueues without a Performer. -template <> struct TaskQueueStorage { +template <> struct TaskQueueStorage { TaskQueueStorage() {} protected: @@ -65,7 +65,7 @@ template <> struct TaskQueueStorage { with the arguments supplied to TaskQueue's constructor, and that class will receive calls of the form @c .perform(nanos) to update it to every batch of new actions. */ -template class TaskQueue: public TaskQueueStorage { +template class TaskQueue: public TaskQueueStorage { public: template TaskQueue(Args&&... args) : TaskQueueStorage(std::forward(args)...),