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 9
9
- ADDED: Add support for opposite approach request parameter. [ #6842 ] ( https://github.com/Project-OSRM/osrm-backend/pull/6842 )
10
10
- ADDED: Add support for accessing edge flags in ` process_segment ` [ #6658 ] ( https://github.com/Project-OSRM/osrm-backend/pull/6658 )
11
11
- Build:
12
+ - CHANGED: Fix compilation with upcoming Boost 1.87.0 [ #7073 ] ( https://github.com/Project-OSRM/osrm-backend/pull/7073 )
12
13
- CHANGED: Upgrade clang-format to version 15. [ #6919 ] ( https://github.com/Project-OSRM/osrm-backend/pull/6919 )
13
14
- CHANGED: Use Debian Bookworm as base Docker image [ #6904 ] ( https://github.com/Project-OSRM/osrm-backend/pull/6904 )
14
15
- 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
53
53
const auto port_string = std::to_string (port);
54
54
55
55
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 ();
58
57
59
58
acceptor.open (endpoint.protocol ());
60
59
#ifdef SO_REUSEPORT
You can’t perform that action at this time.
0 commit comments