| 10 | throwing_executor() : executor("throwing_executor") {} |
| 11 | |
| 12 | void enqueue(concurrencpp::task) override { |
| 13 | throw executor_enqueue_exception(); |
| 14 | } |
| 15 | |
| 16 | void enqueue(std::span<concurrencpp::task>) override { |
| 17 | throw executor_enqueue_exception(); |
nothing calls this directly
no test coverage detected