Skip to content

Commit

Permalink
little cleaning and fix missing typename
Browse files Browse the repository at this point in the history
  • Loading branch information
janetournois committed Aug 18, 2021
1 parent b777109 commit a5114a9
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions Mesh_3/include/CGAL/Polyhedral_mesh_domain_3.h
Original file line number Diff line number Diff line change
Expand Up @@ -474,13 +474,10 @@ class Polyhedral_mesh_domain_3
bool self_intersection = false;
if (r_domain_.self_intersections_pmap_ != boost::none)
{
auto f = primitive_id.first;
boost::graph_traits<Polyhedron>::face_descriptor fd = f;

boost::property_map<Polyhedron, CGAL::dynamic_face_property_t<bool> >::type
si_pmap = r_domain_.self_intersections_pmap_.get();

self_intersection = get(si_pmap, fd);
self_intersection = get(si_pmap, primitive_id.first);
}

// intersection may be either a point or a segment
Expand Down

0 comments on commit a5114a9

Please sign in to comment.