| 170 | |
| 171 | template <class Func> |
| 172 | void execute(Func f) const |
| 173 | { |
| 174 | auto p(std::make_shared<function<Func>>(std::move(f), work_count_)); |
| 175 | context_.do_execute(p, work_count_); |
| 176 | } |
| 177 | |
| 178 | friend bool operator==(const fork_executor& a, |
| 179 | const fork_executor& b) noexcept |
no test coverage detected