| 17 | class ThreadPool { |
| 18 | public: |
| 19 | explicit ThreadPool(int num_workers) |
| 20 | : num_workers_(num_workers), final_barrier_(num_workers + 1) {} |
| 21 | ~ThreadPool(); |
| 22 | |
| 23 | typedef std::function<void()> Task; |
nothing calls this directly
no outgoing calls
no test coverage detected