Fixed struct ctor and case when FollowingInfo used by default

This commit is contained in:
Constantin Shalnev 2015-07-27 18:14:19 +03:00 committed by Alex Zolotarev
parent 1e1f7a8237
commit 4048fff173
2 changed files with 2 additions and 7 deletions

View file

@ -100,6 +100,7 @@ namespace location
: m_turn(routing::turns::TurnDirection::NoTurn),
m_exitNum(0),
m_time(0),
m_pedestrianTurn(routing::turns::PedestrianDirection::None),
m_pedestrianDirectionPos(0., 0.)
{
}

View file

@ -219,13 +219,7 @@ void RoutingSession::GetRouteFollowingInfo(FollowingInfo & info)
else
{
// nothing should be displayed on the screen about turns if these lines are executed
info.m_turn = turns::TurnDirection::NoTurn;
info.m_exitNum = 0;
info.m_time = 0;
info.m_targetName.clear();
info.m_lanes.clear();
info.m_pedestrianTurn = turns::PedestrianDirection::None;
info.m_pedestrianDirectionPos = ms::LatLon(0., 0.);
info = FollowingInfo();
}
}