Merge pull request #7056 from MaelRL/BGL-Clarify_pmap_value_type-GF

Fix implicit conversion from `std::size_t` to `bool` creating ambiguous calls
This commit is contained in:
Laurent Rineau 2022-11-25 10:15:02 +01:00
commit 2f59b23d30
1 changed files with 1 additions and 1 deletions

View File

@ -543,7 +543,7 @@ regularize_face_selection_borders(
(face_index_map)); (face_index_map));
for (mesh_face_descriptor fd : faces(mesh)) for (mesh_face_descriptor fd : faces(mesh))
put(is_selected, fd, graph.labels[get(face_index_map,fd)]); put(is_selected, fd, (graph.labels[get(face_index_map,fd)] != 0));
} }
/// \cond SKIP_IN_MANUAL /// \cond SKIP_IN_MANUAL