mirror of https://github.com/CGAL/cgal
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:
commit
2f59b23d30
|
|
@ -543,7 +543,7 @@ regularize_face_selection_borders(
|
|||
(face_index_map));
|
||||
|
||||
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
|
||||
|
|
|
|||
Loading…
Reference in New Issue