| 109 | ThreadPoolExecutor::~ThreadPoolExecutor() = default; |
| 110 | |
| 111 | ThreadPoolExecutor::ThreadPoolExecutor(std::string name, size_t nThreads) |
| 112 | : Executor(std::move(name)), |
| 113 | impl(std::make_unique<Impl>(*this, nThreads)) {} |
| 114 | |
| 115 | void ThreadPoolExecutor::resize(size_t nThreads) { impl = std::make_unique<Impl>(*this, nThreads); } |
| 116 |
nothing calls this directly
no outgoing calls
no test coverage detected