Skip to content

Commit

Permalink
🐛 Add missing [[maybe_unused]]
Browse files Browse the repository at this point in the history
  • Loading branch information
Thalhammer committed Apr 2, 2024
1 parent 88d9163 commit 41f1786
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/asyncpp/grpc/call.h
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,7 @@ namespace asyncpp::grpc {

awaiter(state* state, typename traits::response_type* resp) : m_state{state}, m_resp{resp} {}

void handle_event(size_t evt, bool ok) noexcept override {
void handle_event([[maybe_unused]] size_t evt, bool ok) noexcept override {
assert(m_handle);
assert(evt == 0);
m_was_ok = ok;
Expand Down

0 comments on commit 41f1786

Please sign in to comment.