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:
authorvng <viktor.govako@gmail.com>2016-01-26 20:24:50 +0300
committerSergey Yershov <yershov@corp.mail.ru>2016-03-23 16:15:38 +0300
commit0dc9f5fa28a1714d7a3aa74f33709ac8d9cb7ae2 (patch)
tree3ce15206a5e734635c7780d54636f1917fe247da /indexer/feature_data.cpp
parentf6a3b8254bbd90f34c179e0333d0e515e9b7aae3 (diff)
Added more building “useless” types.
Diffstat (limited to 'indexer/feature_data.cpp')
-rw-r--r--indexer/feature_data.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/indexer/feature_data.cpp b/indexer/feature_data.cpp
index ae5354e011..fd5c8c524c 100644
--- a/indexer/feature_data.cpp
+++ b/indexer/feature_data.cpp
@@ -77,6 +77,7 @@ public:
// 1-arity
char const * arr1[][1] = {
{ "building" },
+ { "building:part" },
{ "hwtag" },
{ "internet_access" },
};
@@ -86,7 +87,8 @@ public:
// 2-arity
char const * arr2[][2] = {
- { "amenity", "atm" }
+ { "amenity", "atm" },
+ { "building", "address" },
};
AddTypes(arr2);