Removed unnecessary asserts.

Following checks perform correct handling of cases matched by these asserts.
This commit is contained in:
Ilya Grechuhin 2016-09-09 10:27:18 +03:00
parent ef796a2b24
commit d352c5aae5

View file

@ -29,9 +29,6 @@ inline void CoverRect(double minX, double minY,
size_t cells_count, int maxDepth,
vector<CellIdT> & cells)
{
ASSERT_LESS(minX, maxX, ());
ASSERT_LESS(minY, maxY, ());
if (minX < BoundsT::minX) minX = BoundsT::minX;
if (minY < BoundsT::minY) minY = BoundsT::minY;
if (maxX > BoundsT::maxX) maxX = BoundsT::maxX;