We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0a53d3c commit 26f1295Copy full SHA for 26f1295
strings/base_coroutine_foundation.h
@@ -100,10 +100,10 @@ namespace winrt::impl
100
101
struct disconnect_aware_handler
102
{
103
- disconnect_aware_handler(std::experimental::coroutine_handle<> handle)
+ disconnect_aware_handler(std::experimental::coroutine_handle<> handle) noexcept
104
: m_handle(handle) { }
105
106
- disconnect_aware_handler(disconnect_aware_handler&& other)
+ disconnect_aware_handler(disconnect_aware_handler&& other) noexcept
107
: m_context(std::move(other.m_context))
108
, m_handle(std::exchange(other.m_handle, {})) { }
109
0 commit comments