From 9a40c565cb0d26228511e7753353da2f31bdc502 Mon Sep 17 00:00:00 2001 From: vng Date: Wed, 25 Dec 2013 12:33:21 +0300 Subject: [PATCH] Fixed minor assertion. --- indexer/feature_data.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/indexer/feature_data.cpp b/indexer/feature_data.cpp index d17ebdf163..e8bb42168b 100644 --- a/indexer/feature_data.cpp +++ b/indexer/feature_data.cpp @@ -137,7 +137,7 @@ void FeatureParams::SetGeomType(feature::EGeomType t) void FeatureParams::SetGeomTypePointEx() { - ASSERT_EQUAL(m_geomType, HEADER_GEOM_POINT, ()); + ASSERT(m_geomType == HEADER_GEOM_POINT || m_geomType == HEADER_GEOM_POINT_EX, ()); ASSERT(!house.IsEmpty(), ()); m_geomType = HEADER_GEOM_POINT_EX;