Use **this** in worker thread, so no copy nor move
| 256 | public: |
| 257 | // Use **this** in worker thread, so no copy nor move |
| 258 | ThreadPoolExecutor() = default; |
| 259 | ThreadPoolExecutor(ThreadPoolExecutor&&) noexcept = delete; |
| 260 | ThreadPoolExecutor(const ThreadPoolExecutor&) noexcept = delete; |
| 261 | ThreadPoolExecutor& operator=(ThreadPoolExecutor&&) noexcept = delete; |
nothing calls this directly
no outgoing calls
no test coverage detected