| 57 | |
| 58 | template <typename Handler> |
| 59 | inline bool asio_handler_is_continuation( |
| 60 | consign_handler<Handler>* this_handler) |
| 61 | { |
| 62 | return BOOST_ASIO_VERSIONED_NAME(handler_cont_helpers)::is_continuation( |
| 63 | this_handler->handler_); |
| 64 | } |
| 65 | |
| 66 | } // namespace detail |
| 67 |
nothing calls this directly
no test coverage detected