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-10-24 11:33:26 +0300
committerTatiana Yan <tatiana.kondakova@gmail.com>2019-10-24 13:40:27 +0300
commit22d7caffc1d7e16ed2f0e760212a2e8f337f27d9 (patch)
tree39f95cd2dcd561d998e25cd75e18d7f3e64fa878 /routing/index_router.cpp
parent83c343bf9d41142ea5a806aca29b826a8d8dfb2f (diff)
[indexer] Get rid of template GetValue
Diffstat (limited to 'routing/index_router.cpp')
-rw-r--r--routing/index_router.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/routing/index_router.cpp b/routing/index_router.cpp
index f09dbc109a..ebe4ea016f 100644
--- a/routing/index_router.cpp
+++ b/routing/index_router.cpp
@@ -1399,7 +1399,7 @@ bool IndexRouter::DoesTransitSectionExist(NumMwmId numMwmId) const
if (!handle.IsAlive())
MYTHROW(RoutingException, ("Can't get mwm handle for", file));
- MwmValue const & mwmValue = *handle.GetValue<MwmValue>();
+ MwmValue const & mwmValue = *handle.GetValue();
return mwmValue.m_cont.IsExist(TRANSIT_FILE_TAG);
}