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:
authortatiana-yan <tatiana.kondakova@gmail.com>2019-04-10 19:24:04 +0300
committermpimenov <mpimenov@users.noreply.github.com>2019-04-12 12:56:38 +0300
commitc198137d69f40c5fe17a399c06e2d2934109d8b1 (patch)
tree360a96ced514727f05d49c7783155aae37a387fd /routing
parent1eb7a1d11626f1598dbd3c3bcab841e7a6cc4c40 (diff)
[std] Use new include style for coding, fixes.
Diffstat (limited to 'routing')
-rw-r--r--routing/features_road_graph.hpp2
-rw-r--r--routing/index_graph.hpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/routing/features_road_graph.hpp b/routing/features_road_graph.hpp
index f571389508..41c3213635 100644
--- a/routing/features_road_graph.hpp
+++ b/routing/features_road_graph.hpp
@@ -95,7 +95,7 @@ private:
bool IsAlive() const { return m_mwmHandle.IsAlive(); }
MwmSet::MwmHandle m_mwmHandle;
- unique_ptr<feature::AltitudeLoader> m_altitudeLoader;
+ std::unique_ptr<feature::AltitudeLoader> m_altitudeLoader;
};
bool IsOneWay(FeatureType & ft) const;
diff --git a/routing/index_graph.hpp b/routing/index_graph.hpp
index fd364298ec..1707055f9e 100644
--- a/routing/index_graph.hpp
+++ b/routing/index_graph.hpp
@@ -85,7 +85,7 @@ public:
template <typename F>
void ForEachPoint(Joint::Id jointId, F && f) const
{
- m_jointIndex.ForEachPoint(jointId, forward<F>(f));
+ m_jointIndex.ForEachPoint(jointId, std::forward<F>(f));
}
bool IsJoint(RoadPoint const & roadPoint) const;