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:
authorIlya Zverev <zverik@textual.ru>2017-01-09 15:52:49 +0300
committerIlya Zverev <zverik@textual.ru>2017-01-09 19:50:23 +0300
commitcd9957126e9605b0232ccb30e11e5b555d62bcfa (patch)
tree160d4b2c00f8e8ffcda9f1ba102434eef9f5cccc /indexer/feature_meta.hpp
parente84ceab2285811143a557ae19f9836b2d9f06c37 (diff)
[editor] Fix banner_url and opentable editing
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()); }