From ecd44ef651e6747ebcf9e6febcc351afd2a090e2 Mon Sep 17 00:00:00 2001 From: Laurent Rineau Date: Thu, 9 Jan 2014 14:21:12 +0100 Subject: [PATCH] Cosmetic changes My coding style has evolved a lot since 2002! --- Mesh_2/include/CGAL/Mesh_2/Clusters.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Mesh_2/include/CGAL/Mesh_2/Clusters.h b/Mesh_2/include/CGAL/Mesh_2/Clusters.h index a14759e126c..45a50840f97 100644 --- a/Mesh_2/include/CGAL/Mesh_2/Clusters.h +++ b/Mesh_2/include/CGAL/Mesh_2/Clusters.h @@ -418,7 +418,7 @@ create_clusters_of_vertex(const Vertex_handle v) cluster_begin = current; } } - else + else { if(in_a_cluster) { // at this point, current is the end of a cluster and @@ -426,8 +426,9 @@ create_clusters_of_vertex(const Vertex_handle v) construct_cluster(v, cluster_begin, current); in_a_cluster = false; } + } + current = next; ++next; - ++current; } while( current!=begin ); if(in_a_cluster) {