| 237 | |
| 238 | template <typename OtherExecutor> |
| 239 | handler_work_base(const Executor& ex, |
| 240 | const OtherExecutor&) ASIO_NOEXCEPT |
| 241 | : executor_(ex) |
| 242 | { |
| 243 | executor_.on_work_started(); |
| 244 | } |
| 245 | |
| 246 | handler_work_base(const handler_work_base& other) ASIO_NOEXCEPT |
| 247 | : executor_(other.executor_) |
nothing calls this directly
no test coverage detected