mirror of https://github.com/CGAL/cgal
int -> size_t
This commit is contained in:
parent
e1793f56f4
commit
48fab14393
|
|
@ -51,7 +51,7 @@ public:
|
|||
|
||||
Halfedge_around_vertex_circulator vcir = vitr->vertex_begin();
|
||||
std::size_t n = circulator_size(vcir);
|
||||
for (int i = 0; i < n; i++, ++vcir) {
|
||||
for (std::size_t i = 0; i < n; i++, ++vcir) {
|
||||
Point& p = vcir->opposite()->vertex()->point();
|
||||
R[0] += p[0]; R[1] += p[1]; R[2] += p[2];
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue