From 3919b98c32c28da59e25638aa181e4a890f9bc4c Mon Sep 17 00:00:00 2001 From: Viktor Govako Date: Fri, 7 Apr 2023 14:04:21 -0300 Subject: [PATCH] [generator] Use release CHECK to verify FeatureType geometry. Signed-off-by: Viktor Govako --- indexer/feature.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/indexer/feature.cpp b/indexer/feature.cpp index f7cf35dc6e..389ac67ebe 100644 --- a/indexer/feature.cpp +++ b/indexer/feature.cpp @@ -704,7 +704,7 @@ m2::RectD FeatureType::GetLimitRect(int scale) if (m_triangles.empty() && m_points.empty() && (GetGeomType() != GeomType::Point)) { - ASSERT(false, (m_id)); + CHECK(false, (m_id)); // This function is called during indexing, when we need // to check visibility according to feature sizes. @@ -717,8 +717,8 @@ m2::RectD FeatureType::GetLimitRect(int scale) m2::RectD const & FeatureType::GetLimitRectChecked() const { - ASSERT(m_parsed.m_points && m_parsed.m_triangles, (m_id)); - ASSERT(m_limitRect.IsValid(), (m_id)); + CHECK(m_parsed.m_points && m_parsed.m_triangles, (m_id)); + CHECK(m_limitRect.IsValid(), (m_id)); return m_limitRect; }