Skip to content

Commit

Permalink
fixed warning
Browse files Browse the repository at this point in the history
  • Loading branch information
soesau committed Oct 4, 2024
1 parent f6d2a27 commit b77a4f3
Showing 1 changed file with 2 additions and 8 deletions.
10 changes: 2 additions & 8 deletions Kinetic_space_partition/include/CGAL/Kinetic_space_partition_3.h
Original file line number Diff line number Diff line change
Expand Up @@ -2216,17 +2216,11 @@ class Kinetic_space_partition_3 {

adapt_faces(cdtC);

idx = 0;
for (auto& p : a_sets) {
for (idx = 0; idx < a_sets.size(); idx++)
adapt_internal_edges(cdtC, a_constraints[idx]);
idx++;
}

idx = 0;
for (auto& p : b_sets) {
for (idx = 0; idx < b_sets.size(); idx++)
adapt_internal_edges(cdtC, b_constraints[idx]);
idx++;
}
}

void make_conformal(Octree_node node) {
Expand Down

0 comments on commit b77a4f3

Please sign in to comment.