| 14 | */ |
| 15 | |
| 16 | cv_awaiter::cv_awaiter(async_condition_variable& parent, scoped_async_lock& lock) noexcept : m_parent(parent), m_lock(lock) {} |
| 17 | |
| 18 | void cv_awaiter::await_suspend(details::coroutine_handle<void> caller_handle) { |
| 19 | m_caller_handle = caller_handle; |
nothing calls this directly
no outgoing calls
no test coverage detected