| 433 | typename MutableBufferIterator, typename CompletionCondition, |
| 434 | typename ReadHandler> |
| 435 | inline bool asio_handler_is_continuation( |
| 436 | read_op<AsyncReadStream, MutableBufferSequence, MutableBufferIterator, |
| 437 | CompletionCondition, ReadHandler>* this_handler) |
| 438 | { |
| 439 | return this_handler->start_ == 0 ? true |
| 440 | : BOOST_ASIO_VERSIONED_NAME(handler_cont_helpers)::is_continuation( |
| 441 | this_handler->handler_); |
| 442 | } |
| 443 | |
| 444 | template <typename AsyncReadStream, typename MutableBufferSequence, |
| 445 | typename MutableBufferIterator, typename CompletionCondition, |
nothing calls this directly
no test coverage detected