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.
2 parents 7cc9433 + 4b2f3a6 commit 8f20ebdCopy full SHA for 8f20ebd
include/cppcoro/task.hpp
@@ -49,7 +49,7 @@ namespace cppcoro
49
// were crashing under x86 optimised builds.
50
template<typename PROMISE>
51
CPPCORO_NOINLINE
52
- void await_suspend(cppcoro::coroutine_handle<PROMISE> coroutine)
+ void await_suspend(cppcoro::coroutine_handle<PROMISE> coroutine) noexcept
53
{
54
task_promise_base& promise = coroutine.promise();
55
lib/static_thread_pool.cpp
@@ -12,6 +12,7 @@
12
#include <cassert>
13
#include <mutex>
14
#include <chrono>
15
+#include <utility>
16
17
namespace
18
0 commit comments