since std::thread objects are not copiable, it doesn't make sense for a ThreadPool to be copiable.
| 26 | // since std::thread objects are not copiable, it doesn't make sense for a |
| 27 | // ThreadPool to be copiable. |
| 28 | ThreadPool(const ThreadPool&) = delete; |
| 29 | ThreadPool& operator=(const ThreadPool&) = delete; |
| 30 | |
| 31 | template < |
nothing calls this directly
no outgoing calls
no test coverage detected