forked from organicmaps/organicmaps
Minor fixes.
This commit is contained in:
parent
df3fecf96c
commit
33d73bb1b7
2 changed files with 2 additions and 1 deletions
|
@ -241,6 +241,7 @@ RoutingManager::RoutingManager(Callbacks && callbacks, Delegate & delegate)
|
|||
|
||||
m_routingSession.Init(routingStatisticsFn, [this](m2::PointD const & pt)
|
||||
{
|
||||
UNUSED_VALUE(this);
|
||||
#ifdef SHOW_ROUTE_DEBUG_MARKS
|
||||
if (m_bmManager == nullptr)
|
||||
return;
|
||||
|
|
|
@ -17,9 +17,9 @@ void WorldGraph::GetTwins(Segment const & segment, bool isOutgoing, vector<Segme
|
|||
// We need both enter to mwm and exit from mwm in LeapsOnly mode to reconstruct leap.
|
||||
// That's why we need to duplicate twin segment here and than remove duplicate
|
||||
// while processing leaps.
|
||||
m2::PointD const & from = GetPoint(segment, isOutgoing /* front */);
|
||||
for (Segment const & twin : twins)
|
||||
{
|
||||
m2::PointD const & from = GetPoint(segment, isOutgoing /* front */);
|
||||
m2::PointD const & to = GetPoint(twin, isOutgoing /* front */);
|
||||
// Weight is usually zero because twins correspond the same feature
|
||||
// in different mwms. But if we have mwms with different versions and a feature
|
||||
|
|
Loading…
Add table
Reference in a new issue