diff options
| author | Emmanuel Gil Peyrot <linkmauve@linkmauve.fr> | 2018-06-19 13:55:58 +0000 |
|---|---|---|
| committer | Emmanuel Gil Peyrot <linkmauve@linkmauve.fr> | 2018-06-19 13:55:58 +0000 |
| commit | 884fe02952017ac219cd23f9407d27ed4d8a8620 (patch) | |
| tree | a86d66e240ae1e72007ba75b23757c71d5a9a28c /src/livarot/ShapeSweep.cpp | |
| parent | Run clang-tidy’s modernize-use-emplace pass. (diff) | |
| download | inkscape-884fe02952017ac219cd23f9407d27ed4d8a8620.tar.gz inkscape-884fe02952017ac219cd23f9407d27ed4d8a8620.zip | |
Run clang-tidy’s modernize-redundant-void-arg pass.
Diffstat (limited to 'src/livarot/ShapeSweep.cpp')
| -rw-r--r-- | src/livarot/ShapeSweep.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
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++) { |
