From 1360ca3db6ebdd769079ea2c99c11ba1dc4d77c9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ferenc=20G=C3=A9czi?= Date: Tue, 17 Dec 2024 00:00:00 +0000 Subject: [PATCH] Use CHECK instead of ASSERT for unexpectedly reached case MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Ferenc Géczi --- indexer/map_style.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/indexer/map_style.cpp b/indexer/map_style.cpp index 7ec8b4b9b8..6753f8a673 100644 --- a/indexer/map_style.cpp +++ b/indexer/map_style.cpp @@ -79,7 +79,7 @@ MapStyle GetDarkMapStyleVariant(MapStyle mapStyle) case MapStyleOutdoorsLight: return MapStyleOutdoorsDark; default: - ASSERT(false, ()); + CHECK(false, ()); return MapStyleDefaultDark; } } @@ -98,7 +98,7 @@ MapStyle GetLightMapStyleVariant(MapStyle mapStyle) case MapStyleOutdoorsDark: return MapStyleOutdoorsLight; default: - ASSERT(false, ()); + CHECK(false, ()); return MapStyleDefaultLight; } }