fix -Wextra in MeshPart

This commit is contained in:
wmayer
2016-09-24 00:42:52 +02:00
parent b1272cb1aa
commit 1d84eac025
5 changed files with 11 additions and 8 deletions

View File

@@ -186,7 +186,7 @@ Mesh::MeshObject* Mesher::createMesh() const
colorMap[colors[i]].push_back(i);
}
bool createSegm = (colors.size() == aMesh->NbDomains());
bool createSegm = (static_cast<int>(colors.size()) == aMesh->NbDomains());
MeshCore::MeshFacetArray faces;
faces.reserve(aMesh->NbTriangles());