initialize all OnThreadExecutor fields and clarify intent further (#701)

This commit is contained in:
yuyoyuppe
2019-11-12 18:29:54 +03:00
committed by GitHub
parent be86cd4028
commit 4e771ecfb7
2 changed files with 8 additions and 7 deletions

View File

@@ -25,6 +25,6 @@ private:
std::mutex _task_mutex;
std::condition_variable _task_cv;
std::atomic_bool _active;
std::atomic_bool _shutdown_request;
std::queue<std::packaged_task<void()>> _task_queue;
};