From 0bd623bf5d7afe9cf59e12961cb9b9c7984cbf75 Mon Sep 17 00:00:00 2001 From: Claudia Werner Date: Fri, 1 Feb 2013 16:51:43 +0100 Subject: [PATCH] removed wasted std::cout --- .../include/CGAL/Triangulation_sphere_2.h | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/Triangulation_on_sphere_2/include/CGAL/Triangulation_sphere_2.h b/Triangulation_on_sphere_2/include/CGAL/Triangulation_sphere_2.h index 7af825dd22d..fc48bd21f8b 100644 --- a/Triangulation_on_sphere_2/include/CGAL/Triangulation_sphere_2.h +++ b/Triangulation_on_sphere_2/include/CGAL/Triangulation_sphere_2.h @@ -91,9 +91,7 @@ class Ghost_tester bool operator()(const All_edges_iterator & eit) const { int dim = t->dimension(); Face_handle f = eit->first; - t->show_all(); - t->show_face(f); - bool edge1 = f->is_ghost(); + bool edge1 = f->is_ghost(); Face_handle f2 = f->neighbor(eit->second); bool edge2b = f2->is_ghost(); bool edge2 = (f->neighbor(eit->second))->is_ghost();