| 280 | typename MutableBufferSequence, typename MutableBufferIterator, |
| 281 | typename CompletionCondition, typename ReadHandler> |
| 282 | inline bool asio_handler_is_continuation( |
| 283 | read_at_op<AsyncRandomAccessReadDevice, MutableBufferSequence, |
| 284 | MutableBufferIterator, CompletionCondition, ReadHandler>* this_handler) |
| 285 | { |
| 286 | return this_handler->start_ == 0 ? true |
| 287 | : BOOST_ASIO_VERSIONED_NAME(handler_cont_helpers)::is_continuation( |
| 288 | this_handler->handler_); |
| 289 | } |
| 290 | |
| 291 | template <typename AsyncRandomAccessReadDevice, |
| 292 | typename MutableBufferSequence, typename MutableBufferIterator, |
nothing calls this directly
no test coverage detected