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:
authorYuri Gorshenin <y@maps.me>2015-04-24 19:15:50 +0300
committerAlex Zolotarev <alex@maps.me>2015-09-23 02:46:26 +0300
commitb3c84850c0d8e5e70fafcd30a0c023dd5b1fd886 (patch)
treec54f46afc250622847fb9f8ee2931f333647635d /indexer/mwm_set.hpp
parentbe94193c94643040a3299ca0a67bba3da5423f3f (diff)
[index] Removed MwmSet::m_name.
Diffstat (limited to 'indexer/mwm_set.hpp')
-rw-r--r--indexer/mwm_set.hpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/indexer/mwm_set.hpp b/indexer/mwm_set.hpp
index 87ffc31063..52cf1fc93f 100644
--- a/indexer/mwm_set.hpp
+++ b/indexer/mwm_set.hpp
@@ -37,6 +37,7 @@ public:
uint8_t m_minScale; ///< Min zoom level of mwm.
uint8_t m_maxScale; ///< Max zoom level of mwm.
uint8_t m_lockCount; ///< Number of locks.
+ string m_fileName; ///< Path to the mwm file.
version::MwmVersion m_version; ///< Mwm file version.
inline bool IsRegistered() const
@@ -201,7 +202,5 @@ protected:
vector<MwmInfo> m_info;
- vector<string> m_name;
-
mutex m_lock;
};