Removed commented code

This commit is contained in:
Mael Rouxel-Labbé 2018-06-27 16:14:30 +02:00
parent 4e256ef80e
commit 3e1bf168f8
1 changed files with 2 additions and 5 deletions

View File

@ -3033,8 +3033,6 @@ inline void Periodic_3_triangulation_3<GT,TDS>::make_hole(Vertex_handle v,
std::map<Vertex_triple,Facet>& outer_map, std::map<Vertex_triple,Facet>& outer_map,
std::vector<Cell_handle>& hole) std::vector<Cell_handle>& hole)
{ {
//CGAL_triangulation_precondition( all_vertices_begin()++ != all_vertices_end() );
incident_cells(v, std::back_inserter(hole)); incident_cells(v, std::back_inserter(hole));
for(typename std::vector<Cell_handle>::iterator cit = hole.begin(); for(typename std::vector<Cell_handle>::iterator cit = hole.begin();
@ -3164,8 +3162,7 @@ periodic_remove(Vertex_handle v, PointRemover& remover, CoverManager& cover_mana
} }
// Now output the vertices. // Now output the vertices.
std::copy(tmp_vertices.begin(), tmp_vertices.end(), std::copy(tmp_vertices.begin(), tmp_vertices.end(), std::back_inserter(vertices));
std::back_inserter(vertices));
// create a Delaunay/regular triangulation of the points on the boundary // create a Delaunay/regular triangulation of the points on the boundary
// in Euclidean space and make a map from the vertices in remover.tmp // in Euclidean space and make a map from the vertices in remover.tmp