Suppress -Wunused-parameter warnings in tests

This commit is contained in:
Mohammad Nejati
2024-10-26 07:59:43 +00:00
committed by Mohammad Nejati
parent 4ea56c4b39
commit 0886fd891a

View File

@@ -61,6 +61,8 @@ snippets()
assert(bytes_transferred == 13); assert(bytes_transferred == 13);
else else
std::cerr << "Error: " << ec.message() << "\n"; std::cerr << "Error: " << ec.message() << "\n";
(void)bytes_transferred;
}); });
// meanwhile, the operation is outstanding and execution continues from here // meanwhile, the operation is outstanding and execution continues from here
//] //]