fix converson warning

This commit is contained in:
Sébastien Loriot 2023-03-14 14:28:01 +01:00
parent 7ff85c0444
commit 41c9f6de7e
1 changed files with 1 additions and 1 deletions

View File

@ -178,7 +178,7 @@ region_growing_of_planes_on_faces(const PolygonMesh& mesh,
if (!is_border(h, mesh))
{
Id id = get(region_map, face(h, mesh));
if (id!=i)
if (std::size_t(id)!=i)
ids_for_v.insert(id);
}
}