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:
authorAlex Zolotarev <deathbaba@gmail.com>2013-03-04 18:48:25 +0400
committerAlex Zolotarev <alex@maps.me>2015-09-23 01:51:38 +0300
commit764f2387642b11dc231e58eed73403563d6f3b2b (patch)
tree215ba84ae4a6a5b22752421945a8edfbef0c4e54 /indexer/feature_impl.hpp
parentb3acbebfba14aa1b4df8ac424fe35ec22750347f (diff)
Warning fixes
Diffstat (limited to 'indexer/feature_impl.hpp')
-rw-r--r--indexer/feature_impl.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/indexer/feature_impl.hpp b/indexer/feature_impl.hpp
index c8fe10defa..b6472bce6c 100644
--- a/indexer/feature_impl.hpp
+++ b/indexer/feature_impl.hpp
@@ -7,8 +7,8 @@
namespace feature
{
- static int g_arrWorldScales[] = { 3, 5, 7, 9 }; // 9 = scales::GetUpperWorldScale()
- static int g_arrCountryScales[] = { 10, 12, 14, 17 }; // 17 = scales::GetUpperScale()
+ static int const g_arrWorldScales[] = { 3, 5, 7, 9 }; // 9 = scales::GetUpperWorldScale()
+ static int const g_arrCountryScales[] = { 10, 12, 14, 17 }; // 17 = scales::GetUpperScale()
inline string GetTagForIndex(char const * prefix, int ind)
{