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 6486b94
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1343,7 +1343,7 @@ minmax_dihedral_angle(const EdgeRange& edge_range,

CGAL::for_each<ConcurrencyTag>
(edge_range,
[&](const edge_descriptor& e) -> bool
std::function<bool(const edge_descriptor&)>([&](const edge_descriptor& e) -> bool
{
if(is_border(e, tmesh))
return true;
Expand Down Expand Up @@ -1371,7 +1371,7 @@ minmax_dihedral_angle(const EdgeRange& edge_range,
}

return true;
});
}));

return std::make_pair(std::make_pair(extremas.low, extremas.lo),
std::make_pair(extremas.high, extremas.hi));
Expand Down

0 comments on commit 6486b94

Please sign in to comment.