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:
authorVladiMihaylenko <vxmihaylenko@gmail.com>2016-05-19 18:57:12 +0300
committerVladiMihaylenko <vxmihaylenko@gmail.com>2016-05-20 18:48:12 +0300
commit6dbaf995735a82bcb8529520a9a2723538d10eb1 (patch)
treeb1603485536c8322aad718f34081236c8b7e434e /indexer/map_object.cpp
parent055e930ef381a7e90b52d2d5fa888ee5f4b398a2 (diff)
[omim] Review fixes.
Diffstat (limited to 'indexer/map_object.cpp')
-rw-r--r--indexer/map_object.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/indexer/map_object.cpp b/indexer/map_object.cpp
index 039eac80f9..54902ced19 100644
--- a/indexer/map_object.cpp
+++ b/indexer/map_object.cpp
@@ -66,7 +66,6 @@ void MapObject::SetFromFeatureType(FeatureType const & ft)
m_featureID = ft.GetID();
ASSERT(m_featureID.IsValid(), ());
m_geomType = ft.GetFeatureType();
- m_isBookingObject = ftypes::IsBookingChecker::Instance()(ft);
}
FeatureID const & MapObject::GetID() const { return m_featureID; }
@@ -192,6 +191,5 @@ string MapObject::GetBuildingLevels() const
feature::Metadata const & MapObject::GetMetadata() const { return m_metadata; }
bool MapObject::IsPointType() const { return m_geomType == feature::EGeomType::GEOM_POINT; }
bool MapObject::IsBuilding() const { return ftypes::IsBuildingChecker::Instance()(m_types); }
-bool MapObject::IsBookingObject() const { return m_isBookingObject; }
} // namespace osm