| 67 | |
| 68 | template <typename Handler> |
| 69 | inline bool asio_handler_is_continuation( |
| 70 | prepend_handler<Handler>* this_handler) |
| 71 | { |
| 72 | return BOOST_ASIO_VERSIONED_NAME(handler_cont_helpers)::is_continuation( |
| 73 | this_handler->handler_); |
| 74 | } |
| 75 | |
| 76 | template <typename Signature, typename... Values> |
| 77 | struct prepend_signature; |
nothing calls this directly
no test coverage detected