forked from organicmaps/organicmaps
Use CHECK instead of ASSERT for unexpectedly reached case
Signed-off-by: Ferenc Géczi <ferenc.gm@gmail.com>
This commit is contained in:
parent
2c65f4ca90
commit
1360ca3db6
1 changed files with 2 additions and 2 deletions
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue