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.hpp
parente1ff17c53b8af8bbb0a42ac3aaa1406225de7d5b (diff)
Review fixes.
Diffstat (limited to 'indexer/mwm_set.hpp')
-rw-r--r--indexer/mwm_set.hpp6
1 files changed, 0 insertions, 6 deletions
diff --git a/indexer/mwm_set.hpp b/indexer/mwm_set.hpp
index ddfd882947..5ae2c17e6f 100644
--- a/indexer/mwm_set.hpp
+++ b/indexer/mwm_set.hpp
@@ -86,7 +86,6 @@ public:
MwmId() = default;
MwmId(shared_ptr<MwmInfo> const & info) : m_info(info) {}
- MwmId(MwmId const & mwmId): m_info(mwmId.m_info) {}
void Reset() { m_info.reset(); }
bool IsAlive() const
@@ -98,11 +97,6 @@ public:
inline bool operator==(MwmId const & rhs) const { return GetInfo() == rhs.GetInfo(); }
inline bool operator!=(MwmId const & rhs) const { return !(*this == rhs); }
inline bool operator<(MwmId const & rhs) const { return GetInfo() < rhs.GetInfo(); }
- inline MwmId & operator=(MwmId const & rhs)
- {
- m_info = rhs.m_info;
- return *this;
- }
friend string DebugPrint(MwmId const & id);