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>2014-09-03 13:40:06 +0400
committerAlex Zolotarev <alex@maps.me>2015-09-23 02:26:36 +0300
commitf0a748ebb69a4e7cc9e24888ba5edb580126c034 (patch)
treedc78cdf2e5b91a78b444957f8c056036eb1387be /indexer/feature_data.hpp
parentdcccd9de9783171fcc70665c8922a1115f00291f (diff)
Made FeatureParams::GetTypeMask private.
Diffstat (limited to 'indexer/feature_data.hpp')
-rw-r--r--indexer/feature_data.hpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/indexer/feature_data.hpp b/indexer/feature_data.hpp
index 2d1d0f09a3..032805a0df 100644
--- a/indexer/feature_data.hpp
+++ b/indexer/feature_data.hpp
@@ -244,7 +244,6 @@ public:
void SetGeomType(feature::EGeomType t);
void SetGeomTypePointEx();
feature::EGeomType GetGeomType() const;
- uint8_t GetTypeMask() const;
inline void AddType(uint32_t t) { m_Types.push_back(t); }
@@ -297,6 +296,8 @@ public:
}
private:
+ uint8_t GetTypeMask() const;
+
static uint32_t GetIndexForType(uint32_t t);
static uint32_t GetTypeForIndex(uint32_t i);
};