Skip to content

Commit

Permalink
Mesh_3: add a scope after if(...)
Browse files Browse the repository at this point in the history
  • Loading branch information
lrineau committed May 30, 2024
1 parent e90842f commit c538ff1
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions Mesh_3/include/CGAL/Mesh_3/Refine_facets_3.h
Original file line number Diff line number Diff line change
Expand Up @@ -1677,9 +1677,11 @@ compute_facet_properties(const Facet& facet,
r_oracle_.surface_patch_index(std::get<1>(intersect)));
if(surface)
#endif // CGAL_MESH_3_NO_LONGER_CALLS_DO_INTERSECT_3
fp = Facet_properties(std::make_tuple(*surface,
std::get<1>(intersect),
std::get<0>(intersect)));
{
fp = Facet_properties(std::make_tuple(*surface,
std::get<1>(intersect),
std::get<0>(intersect)));
}
}
}
// If the dual is a ray
Expand Down

0 comments on commit c538ff1

Please sign in to comment.