Skip to content

Commit 26f1295

Browse files
authored
Make disconnect_aware_handler ctor and move ctor noexcept. (#661)
1 parent 0a53d3c commit 26f1295

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

strings/base_coroutine_foundation.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -100,10 +100,10 @@ namespace winrt::impl
100100

101101
struct disconnect_aware_handler
102102
{
103-
disconnect_aware_handler(std::experimental::coroutine_handle<> handle)
103+
disconnect_aware_handler(std::experimental::coroutine_handle<> handle) noexcept
104104
: m_handle(handle) { }
105105

106-
disconnect_aware_handler(disconnect_aware_handler&& other)
106+
disconnect_aware_handler(disconnect_aware_handler&& other) noexcept
107107
: m_context(std::move(other.m_context))
108108
, m_handle(std::exchange(other.m_handle, {})) { }
109109

0 commit comments

Comments
 (0)