| 485 | { |
| 486 | public: |
| 487 | any_executor_base() ASIO_NOEXCEPT |
| 488 | : object_fns_(object_fns_table<void>()), |
| 489 | target_(0), |
| 490 | target_fns_(target_fns_table<void>()) |
| 491 | { |
| 492 | } |
| 493 | |
| 494 | template <ASIO_EXECUTION_EXECUTOR Executor> |
| 495 | any_executor_base(Executor ex, false_type) |