| 185 | |
| 186 | template <typename Impl, typename Work, typename Handler, typename Signature> |
| 187 | inline bool asio_handler_is_continuation( |
| 188 | composed_op<Impl, Work, Handler, Signature>* this_handler) |
| 189 | { |
| 190 | return this_handler->invocations_ > 1 ? true |
| 191 | : BOOST_ASIO_VERSIONED_NAME(handler_cont_helpers)::is_continuation( |
| 192 | this_handler->handler_); |
| 193 | } |
| 194 | |
| 195 | template <typename Implementation, typename Executors, typename... Signatures> |
| 196 | class initiate_composed |
nothing calls this directly
no test coverage detected