We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ccc58c4 commit 9421cd5Copy full SHA for 9421cd5
1 file changed
include/stdexec/__detail/__connect_awaitable.hpp
@@ -122,6 +122,9 @@ namespace STDEXEC
122
static constexpr auto
123
operator new([[maybe_unused]] std::size_t __bytes, __opstate_t& __opstate) noexcept -> void*
124
{
125
+ // the first implementation of storing the coroutine frame inline in __opstate using the
126
+ // technique in this file is due to Lewis Baker <lewissbaker@gmail.com>, and was first
127
+ // shared at https://godbolt.org/z/zGG9fsPrz
128
STDEXEC_ASSERT(__bytes == __storage_size);
129
return __opstate.__storage_;
130
}
0 commit comments