| 290 | */ |
| 291 | template <typename U> |
| 292 | executor_binder(executor_arg_t, const executor_type& e, |
| 293 | ASIO_MOVE_ARG(U) u) |
| 294 | : base_type(e, ASIO_MOVE_CAST(U)(u)) |
| 295 | { |
| 296 | } |
| 297 | |
| 298 | /// Copy constructor. |
| 299 | executor_binder(const executor_binder& other) |
nothing calls this directly
no test coverage detected