fixed 2 compilation warnings

This commit is contained in:
matlabbe
2016-09-09 15:10:19 -04:00
parent d6f9f29835
commit 94a4fb4579
2 changed files with 2 additions and 2 deletions

View File

@@ -128,7 +128,7 @@ std::list<std::list<int> > clusterPolygons(
}
}
}
if(currentCluster.size() > minClusterSize)
if((int)currentCluster.size() > minClusterSize)
{
clusters.push_back(currentCluster);
}