Skip to content

Commit

Permalink
Try to please MSVC
Browse files Browse the repository at this point in the history
  • Loading branch information
MaelRL committed Jan 15, 2025
1 parent 20ecde1 commit 48d74ca
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -330,7 +330,7 @@ minmax_edge_length(const EdgeRange& edge_range,
extremas.low = extremas.high = first;
extremas.sq_lo = extremas.sq_hi = squared_edge_length(first, pmesh, np);

CGAL::for_each<ConcurrencyTag>
CGAL::for_each<ConcurrencyTag, EdgeRange>
(edge_range,
[&](const edge_descriptor& e) -> bool
{
Expand Down Expand Up @@ -1341,7 +1341,7 @@ minmax_dihedral_angle(const EdgeRange& edge_range,
typename Geom_traits::Compute_approximate_dihedral_angle_3 approx_dh =
gt.compute_approximate_dihedral_angle_3_object();

CGAL::for_each<ConcurrencyTag>
CGAL::for_each<ConcurrencyTag, EdgeRange>
(edge_range,
[&](const edge_descriptor& e) -> bool
{
Expand Down

0 comments on commit 48d74ca

Please sign in to comment.