| 4 | using concurrencpp::manual_executor; |
| 5 | |
| 6 | manual_executor::manual_executor() : |
| 7 | derivable_executor<concurrencpp::manual_executor>(details::consts::k_manual_executor_name), m_abort(false), m_atomic_abort(false) { |
| 8 | } |
| 9 | |
| 10 | void manual_executor::enqueue(concurrencpp::task task) { |
| 11 | std::unique_lock<decltype(m_lock)> lock(m_lock); |
nothing calls this directly
no outgoing calls
no test coverage detected