| 81 | is_completed.store(true); |
| 82 | } |
| 83 | void reset() noexcept { |
| 84 | is_cancelled.store(false, std::memory_order_relaxed); |
| 85 | is_completed.store(false, std::memory_order_relaxed); |
| 86 | } |
| 87 | bool cancelled() const { |
| 88 | return is_cancelled.load(); |
| 89 | } |
no outgoing calls
no test coverage detected