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:
authorAlex Zolotarev <alex@maps.me>2015-11-06 10:21:41 +0300
committerAlex Zolotarev <alex@maps.me>2015-11-10 19:16:05 +0300
commit30d1880a6fe5f15add03a59cfa04411bdfda1d36 (patch)
treea1fd0c0867f7ecdade742fb5599187fb8acd0781 /indexer/feature_meta.hpp
parent7685f5327b54902e09d9caf12ad288439510af45 (diff)
Fixed wikipedia links mwm storage and displaying in Android.
Previous solution was a really bad engineering decision (more details in https://github.com/mapsme/omim/pull/421 )
Diffstat (limited to 'indexer/feature_meta.hpp')
-rw-r--r--indexer/feature_meta.hpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/indexer/feature_meta.hpp b/indexer/feature_meta.hpp
index cc588048d7..363f899ded 100644
--- a/indexer/feature_meta.hpp
+++ b/indexer/feature_meta.hpp
@@ -54,7 +54,7 @@ namespace feature
string Get(EType type) const
{
- auto it = m_metadata.find(type);
+ auto const it = m_metadata.find(type);
return (it == m_metadata.end()) ? string() : it->second;
}
@@ -78,7 +78,6 @@ namespace feature
inline size_t Size() const { return m_metadata.size(); }
string GetWikiURL() const;
- string GetWikiTitle() const;
template <class ArchiveT> void SerializeToMWM(ArchiveT & ar) const
{