| 61 | StopToken() = default; |
| 62 | |
| 63 | explicit StopToken(std::shared_ptr<StopSourceImpl> impl) : impl_(std::move(impl)) {} |
| 64 | |
| 65 | // A trivial token that never propagates any stop request |
| 66 | static StopToken Unstoppable() { return StopToken(); } |
no outgoing calls
no test coverage detected