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 d9e0e41 commit c90caabCopy full SHA for c90caab
interface/coroutine/frame.h
@@ -121,7 +121,7 @@ struct coroutine_handle : public coroutine_handle<void> {
121
return *this;
122
}
123
// 17.12.3.2, export/import
124
- static /*constexpr*/ coroutine_handle from_address(void* _Addr) {
+ static /*constexpr*/ coroutine_handle from_address(void* _Addr) noexcept {
125
coroutine_handle _Result{};
126
_Result._Ptr = reinterpret_cast<portable_coro_prefix*>(_Addr);
127
return _Result;
0 commit comments