diff --git a/qt/draw_widget.cpp b/qt/draw_widget.cpp index fe6931aedd..073077e302 100644 --- a/qt/draw_widget.cpp +++ b/qt/draw_widget.cpp @@ -467,7 +467,7 @@ void DrawWidget::SubmitFakeLocationPoint(m2::PointD const & pt) if (m_framework.GetRoutingManager().IsRoutingActive()) { - /// Immidiate update of the position in Route to get updated FollowingInfo state for visual debug. + /// Immediate update of the position in Route to get updated FollowingInfo state for visual debugging. /// m_framework.OnLocationUpdate calls RoutingSession::OnLocationPositionChanged /// with delay several times according to interpolation. /// @todo Write log when the final point will be reached and diff --git a/routing/route.cpp b/routing/route.cpp index de96d2f907..76eb07cb8a 100644 --- a/routing/route.cpp +++ b/routing/route.cpp @@ -122,7 +122,7 @@ void Route::GetCurrentSpeedLimit(SpeedInUnits & speedLimit) const { if (!IsValid()) { - speedLimit = SpeedInUnits(); + speedLimit = {}; return; } @@ -162,7 +162,7 @@ void Route::GetClosestStreetNameAfterIdx(size_t segIdx, RouteSegment::RoadNameIn { if (!IsValid()) { - roadNameInfo = RouteSegment::RoadNameInfo(); + roadNameInfo = {}; return; } @@ -211,7 +211,7 @@ void Route::GetClosestTurnAfterIdx(size_t segIdx, TurnItem & turn) const { if (!IsValid()) { - turn = TurnItem(); + turn = {}; return; }