We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 63fb41a commit e9723abCopy full SHA for e9723ab
include/asyncpp/grpc/task.h
@@ -311,7 +311,7 @@ namespace asyncpp::grpc {
311
struct awaiter {
312
promise_type* m_self;
313
constexpr bool await_ready() const noexcept { return true; }
314
- constexpr void await_suspend(asyncpp::coroutine_handle<> h) noexcept { assert(false); }
+ constexpr void await_suspend([[maybe_unused]] asyncpp::coroutine_handle<> h) noexcept { assert(false); }
315
constexpr context_type& await_resume() const noexcept { return m_self->m_context; }
316
};
317
return awaiter{this};
0 commit comments