| 44 | |
| 45 | |
| 46 | CoroLockGuard::CoroLockGuard(CoroLockGuard&& other) |
| 47 | : pMtx_{ std::exchange(other.pMtx_, nullptr) } |
| 48 | {} |
| 49 | CoroLockGuard& CoroLockGuard::operator=(CoroLockGuard&& rhs) |
| 50 | { |
| 51 | pMtx_ = std::exchange(rhs.pMtx_, nullptr); |
nothing calls this directly
no outgoing calls
no test coverage detected