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:
authorArsentiy Milchakov <milcars@mapswithme.com>2018-07-02 14:14:21 +0300
committerIlya Zverev <ilya@zverev.info>2018-07-03 16:22:29 +0300
commit2de3574160138fa77f086a8017207552b782d60d (patch)
tree22cc637c1ef6901e7dec1dfd65d0ecd1bf9dd287 /search/rank_table_cache.cpp
parent2b1bb88f7c442b235ff8a3842836340914bb3fb0 (diff)
RANKS_FILE_TAG is renamed to SEARCH_RANKS_FILE_TAG
Diffstat (limited to 'search/rank_table_cache.cpp')
-rw-r--r--search/rank_table_cache.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/search/rank_table_cache.cpp b/search/rank_table_cache.cpp
index 109f16dcc2..7073551410 100644
--- a/search/rank_table_cache.cpp
+++ b/search/rank_table_cache.cpp
@@ -14,7 +14,7 @@ RankTable const & RankTableCache::Get(DataSource & dataSource, TId const & mwmId
return *it->second;
TKey handle(dataSource.GetMwmHandleById(mwmId));
- auto table = RankTable::Load(handle.GetValue<MwmValue>()->m_cont, RANKS_FILE_TAG);
+ auto table = RankTable::Load(handle.GetValue<MwmValue>()->m_cont, SEARCH_RANKS_FILE_TAG);
if (!table)
table.reset(new DummyRankTable());