move falthrough at the end of the case

This commit is contained in:
Andreas Fabri 2016-10-18 11:08:53 +02:00
parent e92075ab0d
commit 87d4f89c14
1 changed files with 3 additions and 3 deletions

View File

@ -141,8 +141,8 @@ void MdelaunayIpelet::protected_run(int fn)
draw_in_ipe(rt);
break;
}
CGAL_FALLTHROUGH;
}
CGAL_FALLTHROUGH;
case 3://Delaunay and Voronoi of order n-1
CGAL_FALLTHROUGH;
case 8:
@ -176,8 +176,8 @@ void MdelaunayIpelet::protected_run(int fn)
draw_in_ipe(rt);
break;
}
CGAL_FALLTHROUGH;
}
CGAL_FALLTHROUGH;
case 4:
CGAL_FALLTHROUGH;
case 9://k-th Delauney and Voronoi
@ -200,8 +200,8 @@ void MdelaunayIpelet::protected_run(int fn)
draw_in_ipe(rt);
break;
}
CGAL_FALLTHROUGH;
}
CGAL_FALLTHROUGH;
case 5://Draw Voronoi diagrams
if(fn==5) draw_dual_in_ipe(dt,bbox);
if(fn==6) draw_dual_in_ipe(rti,bbox);