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>2018-10-22 19:53:27 +0300
committerVladimir Byko-Ianko <bykoianko@gmail.com>2018-10-23 14:38:14 +0300
commit2c8d717fb8fecd5e90a84bc9be5b9928823054fe (patch)
tree4d885ad0389e3ee69e232ee9466da63fac5abcd0 /openlr/decoded_path.cpp
parent3b2242a81cb36c20f2cb0b5558ce7481cfb326b4 (diff)
[routing] change map to unordered_map for RoadAccess
Diffstat (limited to 'openlr/decoded_path.cpp')
-rw-r--r--openlr/decoded_path.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/openlr/decoded_path.cpp b/openlr/decoded_path.cpp
index 6d7bd78b04..34bfc8191d 100644
--- a/openlr/decoded_path.cpp
+++ b/openlr/decoded_path.cpp
@@ -105,7 +105,7 @@ void WriteAsMappingForSpark(std::ostream & ost, std::vector<DecodedPath> const &
if (next(it) != end(p.m_path))
ost << kSegmentSep;
}
- ost << endl;
+ ost << std::endl;
}
}