mirror of https://github.com/CGAL/cgal
Fix is_empty method for PWH
This commit is contained in:
parent
2321bc6ce8
commit
97bbb55fb2
|
|
@ -132,7 +132,7 @@ template <typename Kernel>
|
|||
inline bool _is_empty (const Polygon_with_holes_2<Kernel>& pwh,
|
||||
typename Gps_polyline_traits<Kernel>::Traits&)
|
||||
{
|
||||
return (pwh.outer_boundary().size() == 0);
|
||||
return false;
|
||||
}
|
||||
|
||||
template <class Pgn1, class Pgn2, class Pwh, class Traits>
|
||||
|
|
|
|||
Loading…
Reference in New Issue