Fixed a compilation warning...

This commit is contained in:
matlabbe
2017-01-30 13:35:16 -05:00
parent 4e324e34d8
commit 31d8ae08c8

View File

@@ -683,7 +683,7 @@ void ExportCloudsDialog::viewClouds(
for(unsigned int i=0; i<mesh->tex_polygons[t].size(); ++i)
{
pcl::Vertices & vertices = mesh->tex_polygons[t][i];
for(int j=0; j<vertices.vertices.size(); ++j)
for(unsigned int j=0; j<vertices.vertices.size(); ++j)
{
UASSERT(oi < cloud->size());
UASSERT(vertices.vertices[j] < originalCloud->size());