The constructor extracts the future from the packaged task.
| 44 | |
| 45 | /// The constructor extracts the future from the packaged task. |
| 46 | explicit async_result(completion_handler_type& h) |
| 47 | : future_(h.get_future()) |
| 48 | { |
| 49 | } |
| 50 | |
| 51 | /// Returns the packaged task's future. |
| 52 | return_type get() |
nothing calls this directly
no test coverage detected