| 18 | |
| 19 | struct ThreadPool::Task { |
| 20 | Task(Closure<void()>* cb, const std::function<void ()>& f) : |
| 21 | callback(cb), function(f) |
| 22 | { |
| 23 | } |
| 24 | list_node link; |
| 25 | Closure<void()>* callback; |
| 26 | std::function<void ()> function; |
nothing calls this directly
no outgoing calls
no test coverage detected