Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'routing/turns_generator.cpp')
-rw-r--r--routing/turns_generator.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/routing/turns_generator.cpp b/routing/turns_generator.cpp
index 70074de54d..e071713a5b 100644
--- a/routing/turns_generator.cpp
+++ b/routing/turns_generator.cpp
@@ -569,13 +569,13 @@ bool GetNextRoutePointIndex(IRoutingResult const & result, RoutePointIndex const
}
RouterResultCode MakeTurnAnnotation(IRoutingResult const & result, NumMwmIds const & numMwmIds,
- RouterDelegate const & delegate,
+ base::Cancellable const & cancellable,
vector<Junction> & junctions, Route::TTurns & turnsDir,
Route::TStreets & streets, vector<Segment> & segments)
{
LOG(LDEBUG, ("Shortest th length:", result.GetPathLength()));
- if (delegate.IsCancelled())
+ if (cancellable.IsCancelled())
return RouterResultCode::Cancelled;
// Annotate turns.
size_t skipTurnSegments = 0;