From 7a7d4b962a6ceb272ea332d884f7662c587c8ae0 Mon Sep 17 00:00:00 2001 From: Olga Khlopkova Date: Mon, 23 Sep 2019 17:06:14 +0300 Subject: [PATCH] Code style fixes --- routing/base/followed_polyline.cpp | 2 +- routing/route.hpp | 5 +++-- .../speed_camera_notifications_tests.cpp | 2 +- 3 files changed, 5 insertions(+), 4 deletions(-) diff --git a/routing/base/followed_polyline.cpp b/routing/base/followed_polyline.cpp index 09bd2721d5..ea9cdd6199 100644 --- a/routing/base/followed_polyline.cpp +++ b/routing/base/followed_polyline.cpp @@ -234,7 +234,7 @@ FollowedPolyline::UpdatedProjection FollowedPolyline::GetClosestMatchingProjecti if (!std::binary_search(m_unmatchingSegmentIndexes.begin(), m_unmatchingSegmentIndexes.end(), it.m_ind)) { - if (minDist > dp) // overwrite best match for matched segment + if (minDist > dp) // Overwrites the best matching for matched segment. { minDist = dp; nearestIter = it; diff --git a/routing/route.hpp b/routing/route.hpp index 4cebaab998..72ce1f24e2 100644 --- a/routing/route.hpp +++ b/routing/route.hpp @@ -24,6 +24,7 @@ #include #include #include +#include #include namespace location @@ -194,9 +195,9 @@ public: struct MovedIteratorInfo { - // Indicator of setting the iterator to one of real segments + // Indicator of setting the iterator to one of real segments. bool m_movedIterator; - // Indicator of the presence of the fake segment which is the nearest to the given point + // Indicator of the presence of the fake segment which is the nearest to the given point. bool m_closerToFake; }; diff --git a/routing/routing_integration_tests/speed_camera_notifications_tests.cpp b/routing/routing_integration_tests/speed_camera_notifications_tests.cpp index 4d4f86de65..474778edaf 100644 --- a/routing/routing_integration_tests/speed_camera_notifications_tests.cpp +++ b/routing/routing_integration_tests/speed_camera_notifications_tests.cpp @@ -333,7 +333,7 @@ UNIT_TEST(SpeedCameraNotification_AutoAlwaysMode_7) // so now we make BeedSignal. { double const speedKmPH = 40.0; - ChangePosition({55.765732, 37.590305}, speedKmPH, routingSession); + ChangePosition({55.76573, 37.59030}, speedKmPH, routingSession); TEST_EQUAL(CheckZone(routingSession, speedKmPH), SpeedCameraManager::Interval::BeepSignalZone, ()); TEST(!CheckVoiceNotification(routingSession), ()); TEST(CheckBeepSignal(routingSession), ());