mirror of https://github.com/CGAL/cgal
fix warnings
This commit is contained in:
parent
e4ce60c0c7
commit
b24f19cecb
|
|
@ -416,4 +416,4 @@ intersection(const Multipolygon_with_holes_2<K>& pA)
|
||||||
} // namespace Polygon_repair
|
} // namespace Polygon_repair
|
||||||
} //namespace CGAL
|
} //namespace CGAL
|
||||||
|
|
||||||
#endif CGAL_POLYGON_REPAIR_BOOLEAN_H
|
#endif // CGAL_POLYGON_REPAIR_BOOLEAN_H
|
||||||
|
|
|
||||||
|
|
@ -78,7 +78,7 @@ Multipolygon_with_holes_2<Kernel, Container> repair(const Polygon_with_holes_2<K
|
||||||
|
|
||||||
|
|
||||||
template <class Kernel, class Container>
|
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<Kernel> winding;
|
||||||
winding.insert(p);
|
winding.insert(p);
|
||||||
|
|
@ -107,7 +107,7 @@ Multipolygon_with_holes_2<Kernel, Container> repair(const Multipolygon_with_hole
|
||||||
|
|
||||||
|
|
||||||
template <class Kernel, class Container>
|
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;
|
CGAL::Polygon_repair::Boolean<Kernel> bops;
|
||||||
bops.insert(p);
|
bops.insert(p);
|
||||||
|
|
@ -123,7 +123,7 @@ Multipolygon_with_holes_2<Kernel, Container> repair(const Multipolygon_with_hole
|
||||||
|
|
||||||
|
|
||||||
template <class Kernel, class Container>
|
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;
|
CGAL::Polygon_repair::Boolean<Kernel> bops;
|
||||||
bops.insert(p);
|
bops.insert(p);
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue