Skip to content

Commit

Permalink
gtfsrt buffer reuse: fix compilation
Browse files Browse the repository at this point in the history
  • Loading branch information
felixguendling committed Nov 14, 2024
1 parent 868731e commit dbcb3bd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/rt_update.cc
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ void run_rt_update(boost::asio::io_context& ioc,
auto const& [ep, src, tag] = x;
return boost::asio::co_spawn(
executor,
[=, &rtt, &tt]() -> awaitable<n::rt::statistics> {
[=, &rtt, &tt, &msg]() -> awaitable<n::rt::statistics> {
try {
auto const res = co_await http_GET(
boost::urls::url{ep.url_},
Expand Down

0 comments on commit dbcb3bd

Please sign in to comment.