Robert Leahy
Results
1
issues of
Robert Leahy
```c++ #include #include using completion_signature = void(std::error_code); using progress_signature = void(int) &; struct completion_handler { void operator()(std::error_code&&) &&; void operator()(int&&) &; }; template decltype(auto) async_operation(CompletionToken&& token) { return boost::asio::async_initiate< CompletionToken,...