Skip to content

Commit

Permalink
fix warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
sloriot committed Nov 6, 2024
1 parent e4ce60c commit b24f19c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Polygon_repair/include/CGAL/Polygon_repair/Boolean.h
Original file line number Diff line number Diff line change
Expand Up @@ -416,4 +416,4 @@ intersection(const Multipolygon_with_holes_2<K>& pA)
} // namespace Polygon_repair
} //namespace CGAL

#endif CGAL_POLYGON_REPAIR_BOOLEAN_H
#endif // CGAL_POLYGON_REPAIR_BOOLEAN_H
6 changes: 3 additions & 3 deletions Polygon_repair/include/CGAL/Polygon_repair/repair.h
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ Multipolygon_with_holes_2<Kernel, Container> repair(const Polygon_with_holes_2<K


template <class Kernel, class Container>
Multipolygon_with_holes_2<Kernel, Container> repair(const Polygon_with_holes_2<Kernel, Container>& p, Non_zero_rule rule)
Multipolygon_with_holes_2<Kernel, Container> repair(const Polygon_with_holes_2<Kernel, Container>& p, Non_zero_rule)
{
Winding<Kernel> winding;
winding.insert(p);
Expand Down Expand Up @@ -107,7 +107,7 @@ Multipolygon_with_holes_2<Kernel, Container> repair(const Multipolygon_with_hole


template <class Kernel, class Container>
Multipolygon_with_holes_2<Kernel, Container> repair(const Multipolygon_with_holes_2<Kernel, Container>& p, Union_rule rule)
Multipolygon_with_holes_2<Kernel, Container> repair(const Multipolygon_with_holes_2<Kernel, Container>& p, Union_rule)
{
CGAL::Polygon_repair::Boolean<Kernel> bops;
bops.insert(p);
Expand All @@ -123,7 +123,7 @@ Multipolygon_with_holes_2<Kernel, Container> repair(const Multipolygon_with_hole


template <class Kernel, class Container>
Multipolygon_with_holes_2<Kernel, Container> repair(const Multipolygon_with_holes_2<Kernel, Container>& p, Intersection_rule rule)
Multipolygon_with_holes_2<Kernel, Container> repair(const Multipolygon_with_holes_2<Kernel, Container>& p, Intersection_rule)
{
CGAL::Polygon_repair::Boolean<Kernel> bops;
bops.insert(p);
Expand Down

0 comments on commit b24f19c

Please sign in to comment.