From 87d4f89c14cd8d4209d2f7cb22ae7ffafe946af2 Mon Sep 17 00:00:00 2001 From: Andreas Fabri Date: Tue, 18 Oct 2016 11:08:53 +0200 Subject: [PATCH] move falthrough at the end of the case --- CGAL_ipelets/demo/CGAL_ipelets/multi_delaunay.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/CGAL_ipelets/demo/CGAL_ipelets/multi_delaunay.cpp b/CGAL_ipelets/demo/CGAL_ipelets/multi_delaunay.cpp index 885726245f4..72442d74759 100644 --- a/CGAL_ipelets/demo/CGAL_ipelets/multi_delaunay.cpp +++ b/CGAL_ipelets/demo/CGAL_ipelets/multi_delaunay.cpp @@ -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);