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:
authorSergey Yershov <yershov@corp.mail.ru>2014-12-26 15:42:58 +0300
committerAlex Zolotarev <alex@maps.me>2015-09-23 02:35:26 +0300
commit28a248389d5612c28e2e740346c9fb152d481b79 (patch)
tree90a39fa80731a8e9fc42db2ddf01a65940dd30fe /indexer/feature_meta.hpp
parent8f6b34bdb4e0e3ffb4010d5bd44df96bb4467a22 (diff)
Add type matchers for ATM and Fuel Station
Diffstat (limited to 'indexer/feature_meta.hpp')
-rw-r--r--indexer/feature_meta.hpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/indexer/feature_meta.hpp b/indexer/feature_meta.hpp
index f1e4d8ff08..9916e84fe3 100644
--- a/indexer/feature_meta.hpp
+++ b/indexer/feature_meta.hpp
@@ -40,7 +40,7 @@ namespace feature
return true;
}
- string Get(EMetadataType type)
+ string Get(EMetadataType type) const
{
auto it = m_metadata.find(type);
return (it == m_metadata.end()) ? string() : it->second;
@@ -102,7 +102,5 @@ namespace feature
}
}
-
-
};
}