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-12-30 17:02:20 +0300
committerSergey Yershov <yershov@corp.mail.ru>2016-03-23 16:03:24 +0300
commit3e6f90c557b88237b1c19984d2a6a3c2736c6b38 (patch)
tree82fe7dd9acfe14aafd47ea0feb9cb8539302523d /indexer/mwm_set.cpp
parente1ff17c53b8af8bbb0a42ac3aaa1406225de7d5b (diff)
Review fixes.
Diffstat (limited to 'indexer/mwm_set.cpp')
-rw-r--r--indexer/mwm_set.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/indexer/mwm_set.cpp b/indexer/mwm_set.cpp
index b0224cc0c3..97592cabdd 100644
--- a/indexer/mwm_set.cpp
+++ b/indexer/mwm_set.cpp
@@ -37,16 +37,16 @@ string DebugPrint(MwmSet::MwmId const & id)
return ss.str();
}
-MwmSet::MwmHandle::MwmHandle() : m_mwmSet(nullptr), m_mwmId(), m_value(nullptr) {}
+MwmSet::MwmHandle::MwmHandle() : m_mwmSet(nullptr), m_value(nullptr) {}
MwmSet::MwmHandle::MwmHandle(MwmSet & mwmSet, MwmId const & mwmId,
unique_ptr<MwmSet::MwmValueBase> && value)
- : m_mwmSet(&mwmSet), m_mwmId(mwmId), m_value(move(value))
+ : m_mwmId(mwmId), m_mwmSet(&mwmSet), m_value(move(value))
{
}
MwmSet::MwmHandle::MwmHandle(MwmHandle && handle)
- : m_mwmSet(handle.m_mwmSet), m_mwmId(handle.m_mwmId), m_value(move(handle.m_value))
+ : m_mwmId(handle.m_mwmId), m_mwmSet(handle.m_mwmSet), m_value(move(handle.m_value))
{
handle.m_mwmSet = nullptr;
handle.m_mwmId.Reset();