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:
authorMikhail Gorbushin <m.gorbushin@corp.mail.ru>2019-04-04 14:01:57 +0300
committerVlad Mihaylenko <vxmihaylenko@gmail.com>2019-04-04 14:03:59 +0300
commit773d2bcda661140496b4b826c7d1411d19890491 (patch)
treea6fb805eb7530fb6ba3578a589b51c4d63f9dca3 /routing
parent7c377088bdde58edb5be1dcd6ba42224fbd1d1da (diff)
[routing] fix style
Diffstat (limited to 'routing')
-rw-r--r--routing/index_graph_starter.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/routing/index_graph_starter.cpp b/routing/index_graph_starter.cpp
index f6a0b1d538..da2bf18fdc 100644
--- a/routing/index_graph_starter.cpp
+++ b/routing/index_graph_starter.cpp
@@ -363,12 +363,12 @@ void IndexGraphStarter::AddFakeEdges(Segment const & segment, bool isOutgoing, v
// |segment| |s|
// *------------>*----------->
bool const sIsOutgoing =
- GetJunction(segment, true /*front */) == GetJunction(s, false /* front */);
+ GetJunction(segment, true /* front */) == GetJunction(s, false /* front */);
// |s| |segment|
// *------------>*----------->
bool const sIsIngoing =
- GetJunction(s, true /*front */) == GetJunction(segment, false /* front */);
+ GetJunction(s, true /* front */) == GetJunction(segment, false /* front */);
if ((isOutgoing && sIsOutgoing) || (!isOutgoing && sIsIngoing))
{