This commit is contained in:
2025-09-20 23:33:45 -05:00
parent 1bdb8cb381
commit 40b02dce5a

View File

@@ -119,7 +119,7 @@ void run_with_deadline(boost::asio::io_context &io_ctx, op_t &&operation,
});
boost::system::error_code err{};
operation([&done, &err](const boost::system::error_code &err_) {
operation([&done, &err](auto &&err_) {
err = err_;
done = true;
});