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:
Diffstat (limited to 'openlr/candidate_points_getter.hpp')
-rw-r--r--openlr/candidate_points_getter.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/openlr/candidate_points_getter.hpp b/openlr/candidate_points_getter.hpp
index 618ddea02f..3b1e7de5f6 100644
--- a/openlr/candidate_points_getter.hpp
+++ b/openlr/candidate_points_getter.hpp
@@ -17,7 +17,7 @@ class CandidatePointsGetter
{
public:
CandidatePointsGetter(size_t const maxJunctionCandidates, size_t const maxProjectionCandidates,
- DataSourceBase const & dataSource, Graph & graph)
+ DataSource const & dataSource, Graph & graph)
: m_maxJunctionCandidates(maxJunctionCandidates)
, m_maxProjectionCandidates(maxProjectionCandidates)
, m_dataSource(dataSource)
@@ -38,7 +38,7 @@ private:
size_t const m_maxJunctionCandidates;
size_t const m_maxProjectionCandidates;
- DataSourceBase const & m_dataSource;
+ DataSource const & m_dataSource;
Graph & m_graph;
};
} // namespace openlr