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>2015-08-13 15:33:04 +0300
committerAlex Zolotarev <alex@maps.me>2015-09-23 03:01:30 +0300
commit93a3c2cfb8b7762e823f42da07f1262c8f012a03 (patch)
tree585c4a092f7718f391543fc6cd3d54f7f6ff857b /indexer/mwm_set.cpp
parent57c1e9741fb23d11bf1ea1b020001a01b75b26fc (diff)
Mwm set public interface corrections.
Diffstat (limited to 'indexer/mwm_set.cpp')
-rw-r--r--indexer/mwm_set.cpp5
1 files changed, 0 insertions, 5 deletions
diff --git a/indexer/mwm_set.cpp b/indexer/mwm_set.cpp
index fde4d1f85f..7035741bcc 100644
--- a/indexer/mwm_set.cpp
+++ b/indexer/mwm_set.cpp
@@ -38,11 +38,6 @@ string DebugPrint(MwmSet::MwmId const & id)
MwmSet::MwmHandle::MwmHandle() : m_mwmSet(nullptr), m_mwmId(), m_value(nullptr) {}
-MwmSet::MwmHandle::MwmHandle(MwmSet & mwmSet, MwmId const & mwmId)
- : m_mwmSet(&mwmSet), m_mwmId(mwmId), m_value(m_mwmSet->LockValue(m_mwmId))
-{
-}
-
MwmSet::MwmHandle::MwmHandle(MwmSet & mwmSet, MwmId const & mwmId, TMwmValuePtr value)
: m_mwmSet(&mwmSet), m_mwmId(mwmId), m_value(value)
{