| 398 | typename ConstBufferIterator, typename CompletionCondition, |
| 399 | typename WriteHandler> |
| 400 | inline bool asio_handler_is_continuation( |
| 401 | write_op<AsyncWriteStream, ConstBufferSequence, ConstBufferIterator, |
| 402 | CompletionCondition, WriteHandler>* this_handler) |
| 403 | { |
| 404 | return this_handler->start_ == 0 ? true |
| 405 | : BOOST_ASIO_VERSIONED_NAME(handler_cont_helpers)::is_continuation( |
| 406 | this_handler->handler_); |
| 407 | } |
| 408 | |
| 409 | template <typename AsyncWriteStream, typename ConstBufferSequence, |
| 410 | typename ConstBufferIterator, typename CompletionCondition, |
nothing calls this directly
no test coverage detected