Partition_2

This commit is contained in:
Andreas Fabri 2025-08-21 13:50:34 +01:00
parent b2fa7124a9
commit 54c972551e
1 changed files with 5 additions and 1 deletions

View File

@ -156,7 +156,11 @@ partition_is_valid_2 (InputIterator point_first, InputIterator point_last,
#ifdef CGAL_PARTITION_CHECK_DEBUG
int poly_num = 0;
#endif
for (; poly_first != poly_last; poly_first++, poly_num++)
for (; poly_first != poly_last; poly_first++
#ifdef CGAL_PARTITION_CHECK_DEBUG
, poly_num++
#endif
)
{
vtx_begin = (*poly_first).vertices_begin();
vtx_end = (*poly_first).vertices_end();