Removed broken trick

Doesn't work anymore without implicit conversions between P and WP
This commit is contained in:
Mael Rouxel-Labbé 2017-05-15 17:15:25 +02:00
parent d07976b2ac
commit c8020eaa97
1 changed files with 1 additions and 4 deletions

View File

@ -505,10 +505,7 @@ public:
if (pbegin == points.end()) return number_of_vertices() - n;
}
// Use Geom_traits::K for efficiency: spatial_sort creates a lot
// of copies of the traits but does not need the domain that is
// stored in it.
spatial_sort (pbegin, points.end(), typename Geom_traits::K());
spatial_sort (pbegin, points.end(), this->geom_traits());
Conflict_tester tester(*pbegin,this);
Point_hider hider;