This commit is contained in:
Nikolai Kochetov 2021-10-09 09:00:51 +03:00
parent 7a5cc357ec
commit f7c1e25526

View File

@ -77,7 +77,7 @@ struct Task
return *value;
}
explicit Task(coro_handle handle) : my(handle), tag(handle.promise().tag)
Task(coro_handle handle) : my(handle), tag(handle.promise().tag) // NOLINT(google-explicit-constructor)
{
assert(handle);
my.promise().r = this;