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:
Diffstat (limited to 'indexer/feature_meta.hpp')
-rw-r--r--indexer/feature_meta.hpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/indexer/feature_meta.hpp b/indexer/feature_meta.hpp
index 9b2a6862bd..c66334f0f2 100644
--- a/indexer/feature_meta.hpp
+++ b/indexer/feature_meta.hpp
@@ -131,7 +131,8 @@ public:
};
/// Used to normalize tags like "contact:phone" and "phone" to a common metadata enum value.
- static bool TypeFromString(string const & osmTagKey, feature::Metadata::EType & outType);
+ static bool TypeFromString(string const & osmTagKey, EType & outType);
+ static bool IsSponsoredType(EType const & type);
void Set(EType type, string const & value) { MetadataBase::Set(type, value); }
void Drop(EType type) { Set(type, string()); }