forked from organicmaps/organicmaps
Replace CHECK to ASSERT for IsPolygonCCW() in feature_sorter.cpp.
This commit is contained in:
parent
1f9d7c27c4
commit
156257ef83
1 changed files with 1 additions and 1 deletions
|
@ -300,7 +300,7 @@ namespace feature
|
|||
if (!IsPolygonCCW(points.begin(), points.end()))
|
||||
{
|
||||
reverse(points.begin(), points.end());
|
||||
CHECK ( IsPolygonCCW(points.begin(), points.end()), (points) );
|
||||
ASSERT ( IsPolygonCCW(points.begin(), points.end()), (points) );
|
||||
}
|
||||
|
||||
size_t const index = FindSingleStrip(count,
|
||||
|
|
Loading…
Add table
Reference in a new issue