| 54 | void using_strand(); |
| 55 | |
| 56 | int main(int, char**) { |
| 57 | daytime_service(); |
| 58 | |
| 59 | successful_async_wait(); |
| 60 | cancelled_async_wait(); |
| 61 | |
| 62 | using_strand(); |
| 63 | |
| 64 | return 0; |
| 65 | } |
| 66 | |
| 67 | void daytime_service() { |
| 68 | using asio::ip::tcp; |
nothing calls this directly
no test coverage detected