You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
but note this line: it's Args... args_ and not Args&&... args making the forward below useless. We always copy those arguments. Fixing this by adding && to all *Parameters breaks the API.
The text was updated successfully, but these errors were encountered:
Our
BaseParameters
hold some potentially expensive vectors for coordinates, hints etc.osrm-backend/include/engine/api/base_parameters.hpp
Lines 64 to 67 in b821a1d
RouteParameters
and others then forward their argumentsosrm-backend/include/engine/api/route_parameters.hpp
Line 79 in b821a1d
but note this line: it's
Args... args_
and notArgs&&... args
making theforward
below useless. We always copy those arguments. Fixing this by adding&&
to all*Parameters
breaks the API.The text was updated successfully, but these errors were encountered: