mirror of https://github.com/CGAL/cgal
int -> size_t to avoid warning
This commit is contained in:
parent
e185efc2dc
commit
af8e2a2633
|
|
@ -107,7 +107,7 @@ public:
|
||||||
// this is the order that set of points in a face should appear
|
// this is the order that set of points in a face should appear
|
||||||
// after sorting points wrt each face
|
// after sorting points wrt each face
|
||||||
for(int i=0; i<6; i++)
|
for(int i=0; i<6; i++)
|
||||||
for(int j=0; j<vec[i].size(); j++)
|
for(std::size_t j=0; j<vec[i].size(); j++)
|
||||||
*begin++ = vec[i][j];
|
*begin++ = vec[i][j];
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue