| 954 | template <typename AsyncReadStream, |
| 955 | typename DynamicBuffer_v1, typename ReadHandler> |
| 956 | inline bool asio_handler_is_continuation( |
| 957 | read_until_delim_op_v1<AsyncReadStream, |
| 958 | DynamicBuffer_v1, ReadHandler>* this_handler) |
| 959 | { |
| 960 | return this_handler->start_ == 0 ? true |
| 961 | : BOOST_ASIO_VERSIONED_NAME(handler_cont_helpers)::is_continuation( |
| 962 | this_handler->handler_); |
| 963 | } |
| 964 | |
| 965 | template <typename AsyncReadStream> |
| 966 | class initiate_async_read_until_delim_v1 |
nothing calls this directly
no test coverage detected