mirror of https://github.com/CGAL/cgal
int -> size_t
This commit is contained in:
parent
5edcf96e13
commit
b1532991e5
|
|
@ -535,7 +535,7 @@ private:
|
|||
insert_subconstraint(vertices[0],vertices[1]);
|
||||
|
||||
if(n>2){
|
||||
for(int j=1; j<n-1; j++){
|
||||
for(std::size_t j=1; j<n-1; j++){
|
||||
hierarchy.append_constraint(ca, vertices[j], vertices[j+1]);
|
||||
insert_subconstraint(vertices[j], vertices[j+1]);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue