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-25 20:32:07 +0300
committerAlex Zolotarev <alex@maps.me>2015-09-23 02:35:26 +0300
commit8f6b34bdb4e0e3ffb4010d5bd44df96bb4467a22 (patch)
tree2a02f3ce859edf2397c83d1fd2f3e48efa0b9bc0 /indexer/feature_data.cpp
parentaf6bd463306aad0bc7154d5550a298a104bad143 (diff)
Moved work with metadata to separated files
Diffstat (limited to 'indexer/feature_data.cpp')
-rw-r--r--indexer/feature_data.cpp13
1 files changed, 0 insertions, 13 deletions
diff --git a/indexer/feature_data.cpp b/indexer/feature_data.cpp
index 33843dcb97..2488338e8a 100644
--- a/indexer/feature_data.cpp
+++ b/indexer/feature_data.cpp
@@ -168,19 +168,6 @@ bool FeatureParams::AddHouseName(string const & s)
return false;
}
-bool FeatureParams::AddAdditionalInfo(additional_info_types type, string const & s)
-{
- if (m_additional_info[type].empty())
- {
- m_additional_info[type] = s;
- }
- else
- {
- m_additional_info[type] = m_additional_info[type] + ", " + s;
- }
- return true;
-}
-
bool FeatureParams::AddHouseNumber(string const & ss)
{