Skip to content

Commit

Permalink
Fix unused variables
Browse files Browse the repository at this point in the history
  • Loading branch information
alfred2g committed Dec 19, 2023
1 parent dab7753 commit f3e1354
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/Mqtt5ClientTest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2061,7 +2061,7 @@ static int s_TestMqtt5SharedSubscriptionTest(Aws::Crt::Allocator *allocator, voi
subscribe->WithSubscription(std::move(subscription));

std::promise<void> suback;
auto onSubAck = [&](int ioErr, std::shared_ptr<SubAckPacket> packet) {
auto onSubAck = [&](int , std::shared_ptr<SubAckPacket> ) {
suback.set_value();
};

Expand Down

0 comments on commit f3e1354

Please sign in to comment.