Fix is_empty method for PWH

This commit is contained in:
Simon Giraudot 2020-10-05 09:06:56 +02:00
parent 2321bc6ce8
commit 97bbb55fb2
1 changed files with 1 additions and 1 deletions

View File

@ -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>