CGAL / cgal

The public CGAL repository, see the README below
https://github.com/CGAL/cgal#readme
Other
4.67k stars 1.35k forks source link

Mesh_3: add a scope after if(...) #8241

Closed lrineau closed 4 weeks ago

lrineau commented 1 month ago

Summary of Changes

Trivial, that adds a scope. Before it was:

      if(surface)
        fp =  Facet_properties(std::make_tuple(*surface,
                                      std::get<1>(intersect),
                                      std::get<0>(intersect)));

and now:

      if(surface)
      {
        fp =  Facet_properties(std::make_tuple(*surface,
                                      std::get<1>(intersect),
                                      std::get<0>(intersect)));
      }

Release Management

sloriot commented 1 month ago

Successfully tested in CGAL-6.0-Ic-257