int -> size_t to avoid warning

This commit is contained in:
Sébastien Loriot 2015-04-17 09:08:11 +02:00
parent e185efc2dc
commit af8e2a2633
1 changed files with 1 additions and 1 deletions

View File

@ -107,7 +107,7 @@ public:
// this is the order that set of points in a face should appear
// after sorting points wrt each face
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];
}
};