| 812 | } |
| 813 | |
| 814 | void start() & noexcept |
| 815 | { |
| 816 | __context& __context = __base_.context(); |
| 817 | if (__context.submit(this)) |
| 818 | { |
| 819 | if (auto __ec = __context.try_wakeup()) |
| 820 | { |
| 821 | std::terminate(); // TODO: handle error |
| 822 | } |
| 823 | } |
| 824 | } |
| 825 | |
| 826 | private: |
| 827 | _Base __base_; |
nothing calls this directly
no test coverage detected