| 53 | }; |
| 54 | |
| 55 | inline ThreadPool::ThreadPool(size_t threads) : stop(false) { |
| 56 | start_threads(threads); |
| 57 | } |
| 58 | |
| 59 | template <class F, class... Args> |
| 60 | auto ThreadPool::enqueue(F&& f, Args&&... args) |
nothing calls this directly
no outgoing calls
no test coverage detected