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
path: root/base
diff options
context:
space:
mode:
authorMaksim Andrianov <maksimandrianov1@gmail.com>2018-09-26 13:51:41 +0300
committermpimenov <mpimenov@users.noreply.github.com>2018-09-28 18:01:05 +0300
commit2e84f45b8848e4eb3de42d20902fa7ce3053e641 (patch)
treee509bb71843741131849f47408f76730299c3a9d /base
parent7fd1ee481ef6c327b0af760752648a86d542aeae (diff)
Review fixes
Diffstat (limited to 'base')
-rw-r--r--base/geo_object_id.hpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/base/geo_object_id.hpp b/base/geo_object_id.hpp
index 4c6caa8899..8d01f7db0d 100644
--- a/base/geo_object_id.hpp
+++ b/base/geo_object_id.hpp
@@ -73,8 +73,6 @@ public:
// Returns the source type of the object.
Type GetType() const;
- bool IsValid() const { return m_encodedId != kInvalid; }
-
bool operator<(GeoObjectId const & other) const { return m_encodedId < other.m_encodedId; }
bool operator==(GeoObjectId const & other) const { return m_encodedId == other.m_encodedId; }
bool operator!=(GeoObjectId const & other) const { return !(*this == other); }