| 481 | |
| 482 | struct CompletionGuard { |
| 483 | explicit CompletionGuard(std::atomic<bool> &isDone_) : isDone(isDone_) {} |
| 484 | CompletionGuard(const CompletionGuard &) = delete; |
| 485 | CompletionGuard &operator=(const CompletionGuard &) = delete; |
| 486 | CompletionGuard(CompletionGuard &&) = delete; |
nothing calls this directly
no outgoing calls
no test coverage detected