| 660 | } |
| 661 | |
| 662 | void async_read_handler( |
| 663 | const boost::system::error_code& err, boost::system::error_code* err_out, |
| 664 | std::size_t bytes_transferred, std::size_t* bytes_out, bool* called) |
| 665 | { |
| 666 | *err_out = err; |
| 667 | *bytes_out = bytes_transferred; |
| 668 | *called = true; |
| 669 | } |
| 670 | |
| 671 | void test_dynamic_string_async_read_until_char() |
| 672 | { |
nothing calls this directly
no outgoing calls
no test coverage detected