From da9c16278a9b838b7f1f3ffe6bc4f00985af4ff5 Mon Sep 17 00:00:00 2001 From: Gabi Melman Date: Thu, 9 Dec 2021 08:29:12 +0200 Subject: [PATCH] Update thread_pool.h --- include/spdlog/details/thread_pool.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/spdlog/details/thread_pool.h b/include/spdlog/details/thread_pool.h index ccda0030..26c0964e 100644 --- a/include/spdlog/details/thread_pool.h +++ b/include/spdlog/details/thread_pool.h @@ -88,7 +88,7 @@ public: thread_pool(size_t q_max_items, size_t threads_n, std::function on_thread_start); thread_pool(size_t q_max_items, size_t threads_n); - // message all threads to terminate and gracefully join them + // message all threads to terminate and join them ~thread_pool(); thread_pool(const thread_pool &) = delete;