| 63 | |
| 64 | template <typename Handler> |
| 65 | inline bool asio_handler_is_continuation( |
| 66 | as_tuple_handler<Handler>* this_handler) |
| 67 | { |
| 68 | return BOOST_ASIO_VERSIONED_NAME(handler_cont_helpers)::is_continuation( |
| 69 | this_handler->handler_); |
| 70 | } |
| 71 | |
| 72 | template <typename Signature> |
| 73 | struct as_tuple_signature; |
nothing calls this directly
no test coverage detected