int -> size_t

This commit is contained in:
Andreas Fabri 2010-08-05 12:06:33 +00:00
parent e1793f56f4
commit 48fab14393
1 changed files with 1 additions and 1 deletions

View File

@ -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];
}