From 5e3707e961be2138e86714c76dd5a652b95ae14b Mon Sep 17 00:00:00 2001 From: Yuri Gorshenin Date: Wed, 6 Sep 2017 16:50:31 +0300 Subject: [PATCH] [openlr] Fix to OpenLR assessment tool CarModelFactory creation. --- .../openlr_assessment_tool/mainwindow.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/openlr/openlr_match_quality/openlr_assessment_tool/mainwindow.cpp b/openlr/openlr_match_quality/openlr_assessment_tool/mainwindow.cpp index 4b8512272b..df5b25d2a4 100644 --- a/openlr/openlr_match_quality/openlr_assessment_tool/mainwindow.cpp +++ b/openlr/openlr_match_quality/openlr_assessment_tool/mainwindow.cpp @@ -13,6 +13,8 @@ #include "routing_common/car_model.hpp" +#include "storage/country_parent_getter.hpp" + #include "geometry/mercator.hpp" #include "geometry/point2d.hpp" @@ -118,7 +120,7 @@ public: : m_framework(framework) , m_index(framework.GetIndex()) , m_roadGraph(m_index, routing::IRoadGraph::Mode::ObeyOnewayTag, - make_unique(routing::CountryParentNameGetterFn{})) + make_unique(storage::CountryParentGetter{})) { }