Cosmetic changes

My coding style has evolved a lot since 2002!
This commit is contained in:
Laurent Rineau 2014-01-09 14:21:12 +01:00
parent 2c236ff01d
commit ecd44ef651
1 changed files with 3 additions and 2 deletions

View File

@ -418,7 +418,7 @@ create_clusters_of_vertex(const Vertex_handle v)
cluster_begin = current; cluster_begin = current;
} }
} }
else else {
if(in_a_cluster) if(in_a_cluster)
{ {
// at this point, current is the end of a cluster and // 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); construct_cluster(v, cluster_begin, current);
in_a_cluster = false; in_a_cluster = false;
} }
}
current = next;
++next; ++next;
++current;
} while( current!=begin ); } while( current!=begin );
if(in_a_cluster) if(in_a_cluster)
{ {