| 369 | template <typename Protocol, typename Executor, typename EndpointSequence, |
| 370 | typename ConnectCondition, typename RangeConnectHandler> |
| 371 | inline bool asio_handler_is_continuation( |
| 372 | range_connect_op<Protocol, Executor, EndpointSequence, |
| 373 | ConnectCondition, RangeConnectHandler>* this_handler) |
| 374 | { |
| 375 | return BOOST_ASIO_VERSIONED_NAME(handler_cont_helpers)::is_continuation( |
| 376 | this_handler->handler_); |
| 377 | } |
| 378 | |
| 379 | template <typename Protocol, typename Executor> |
| 380 | class initiate_async_range_connect |
nothing calls this directly
no test coverage detected