File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change 99 - ADDED: Add support for opposite approach request parameter. [ #6842 ] ( https://github.com/Project-OSRM/osrm-backend/pull/6842 )
1010 - ADDED: Add support for accessing edge flags in ` process_segment ` [ #6658 ] ( https://github.com/Project-OSRM/osrm-backend/pull/6658 )
1111 - Build:
12+ - CHANGED: Fix compilation with upcoming Boost 1.87.0 [ #7073 ] ( https://github.com/Project-OSRM/osrm-backend/pull/7073 )
1213 - CHANGED: Upgrade clang-format to version 15. [ #6919 ] ( https://github.com/Project-OSRM/osrm-backend/pull/6919 )
1314 - CHANGED: Use Debian Bookworm as base Docker image [ #6904 ] ( https://github.com/Project-OSRM/osrm-backend/pull/6904 )
1415 - CHANGED: Upgrade CI actions to latest versions [ #6893 ] ( https://github.com/Project-OSRM/osrm-backend/pull/6893 )
Original file line number Diff line number Diff line change @@ -53,8 +53,7 @@ class Server
5353 const auto port_string = std::to_string (port);
5454
5555 boost::asio::ip::tcp::resolver resolver (io_context);
56- boost::asio::ip::tcp::resolver::query query (address, port_string);
57- boost::asio::ip::tcp::endpoint endpoint = *resolver.resolve (query);
56+ boost::asio::ip::tcp::endpoint endpoint = *resolver.resolve (address, port_string).begin ();
5857
5958 acceptor.open (endpoint.protocol ());
6059#ifdef SO_REUSEPORT
You can’t perform that action at this time.
0 commit comments