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
parentb3acbebfba14aa1b4df8ac424fe35ec22750347f (diff)
Warning fixes
Diffstat (limited to 'indexer')
-rw-r--r--indexer/feature_impl.hpp4
-rw-r--r--indexer/mwm_version.hpp6
2 files changed, 2 insertions, 8 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)
{
diff --git a/indexer/mwm_version.hpp b/indexer/mwm_version.hpp
index 9785bd3a45..d99b11c4b2 100644
--- a/indexer/mwm_version.hpp
+++ b/indexer/mwm_version.hpp
@@ -8,12 +8,6 @@ class Writer;
namespace ver
{
- class VersionData
- {
- uint32_t m_mwmVer;
- uint32_t m_timeStamp;
- };
-
void WriteVersion(Writer & w);
uint32_t ReadVersion(ModelReaderPtr const & r);
}