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:
authorMWM Planet Generator cdn3 <osm@cdn3.mapswithme.com>2015-10-22 00:23:51 +0300
committerMWM Planet Generator cdn3 <osm@cdn3.mapswithme.com>2015-10-22 00:23:51 +0300
commit23d9c80ff3fcf46799925c592c17a1e1a5b2486f (patch)
treea438c5a05008dd767e0179146ba72e92495913d8 /indexer/search_index_builder.cpp
parentaa9a51afd2dcc6d5b3166d2876a2dc7845618600 (diff)
[linux] Fixed project build with g++ 4.8.
Diffstat (limited to 'indexer/search_index_builder.cpp')
-rw-r--r--indexer/search_index_builder.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/indexer/search_index_builder.cpp b/indexer/search_index_builder.cpp
index 81f4d01803..0048ad9108 100644
--- a/indexer/search_index_builder.cpp
+++ b/indexer/search_index_builder.cpp
@@ -226,21 +226,21 @@ class FeatureInserter
Classificator const & c = classif();
// Fill types that always! should be skipped.
- for (auto const & e : (StringIL[]) { { "entrance" } })
+ for (StringIL const & e : (StringIL[]) { { "entrance" } })
m_skipF[0].push_back(c.GetTypeByPath(e));
- for (auto const & e : (StringIL[]) { { "building", "address" } })
+ for (StringIL const & e : (StringIL[]) { { "building", "address" } })
m_skipF[1].push_back(c.GetTypeByPath(e));
// Fill types that never! will be skipped.
- for (auto const & e : (StringIL[]) { { "highway", "bus_stop" }, { "highway", "speed_camera" } })
+ for (StringIL const & e : (StringIL[]) { { "highway", "bus_stop" }, { "highway", "speed_camera" } })
m_dontSkipEn.push_back(c.GetTypeByPath(e));
// Fill types that will be skipped if feature's name is empty!
- for (auto const & e : (StringIL[]) { { "building" }, { "highway" }, { "natural" }, { "waterway" }, { "landuse" } })
+ for (StringIL const & e : (StringIL[]) { { "building" }, { "highway" }, { "natural" }, { "waterway" }, { "landuse" } })
m_skipEn[0].push_back(c.GetTypeByPath(e));
- for (auto const & e : (StringIL[]) {
+ for (StringIL const & e : (StringIL[]) {
{ "place", "country" },
{ "place", "state" },
{ "place", "county" },