From 884fe02952017ac219cd23f9407d27ed4d8a8620 Mon Sep 17 00:00:00 2001 From: Emmanuel Gil Peyrot Date: Tue, 19 Jun 2018 15:55:58 +0200 Subject: =?UTF-8?q?Run=20clang-tidy=E2=80=99s=20modernize-redundant-void-a?= =?UTF-8?q?rg=20pass.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/livarot/ShapeSweep.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/livarot/ShapeSweep.cpp') diff --git a/src/livarot/ShapeSweep.cpp b/src/livarot/ShapeSweep.cpp index 53e9d3137..e5ebb9099 100644 --- a/src/livarot/ShapeSweep.cpp +++ b/src/livarot/ShapeSweep.cpp @@ -43,7 +43,7 @@ */ void -Shape::ResetSweep (void) +Shape::ResetSweep () { MakePointData (true); MakeEdgeData (true); @@ -51,7 +51,7 @@ Shape::ResetSweep (void) } void -Shape::CleanupSweep (void) +Shape::CleanupSweep () { MakePointData (false); MakeEdgeData (false); @@ -59,7 +59,7 @@ Shape::CleanupSweep (void) } void -Shape::ForceToPolygon (void) +Shape::ForceToPolygon () { type = shape_polygon; } @@ -3009,7 +3009,7 @@ void Shape::AddChgt(int lastPointNo, int lastChgtPt, Shape * &shapeHead, // is this a debug function? It's calling localized "printf" ... void -Shape::Validate (void) +Shape::Validate () { for (int i = 0; i < numberOfPoints(); i++) { -- cgit v1.2.3