summaryrefslogtreecommitdiffstats
path: root/src/object/sp-flowregion.cpp
diff options
context:
space:
mode:
authorEmmanuel Gil Peyrot <linkmauve@linkmauve.fr>2018-06-19 13:55:58 +0000
committerEmmanuel Gil Peyrot <linkmauve@linkmauve.fr>2018-06-19 13:55:58 +0000
commit884fe02952017ac219cd23f9407d27ed4d8a8620 (patch)
treea86d66e240ae1e72007ba75b23757c71d5a9a28c /src/object/sp-flowregion.cpp
parentRun clang-tidy’s modernize-use-emplace pass. (diff)
downloadinkscape-884fe02952017ac219cd23f9407d27ed4d8a8620.tar.gz
inkscape-884fe02952017ac219cd23f9407d27ed4d8a8620.zip
Run clang-tidy’s modernize-redundant-void-arg pass.
Diffstat (limited to 'src/object/sp-flowregion.cpp')
-rw-r--r--src/object/sp-flowregion.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/object/sp-flowregion.cpp b/src/object/sp-flowregion.cpp
index 3e7732e1a..9829cf828 100644
--- a/src/object/sp-flowregion.cpp
+++ b/src/object/sp-flowregion.cpp
@@ -89,7 +89,7 @@ void SPFlowregion::update(SPCtx *ctx, unsigned int flags) {
this->UpdateComputed();
}
-void SPFlowregion::UpdateComputed(void)
+void SPFlowregion::UpdateComputed()
{
for (std::vector<Shape*>::iterator it = computed.begin() ; it != computed.end() ; ++it) {
delete *it;
@@ -236,7 +236,7 @@ void SPFlowregionExclude::update(SPCtx *ctx, unsigned int flags) {
}
-void SPFlowregionExclude::UpdateComputed(void)
+void SPFlowregionExclude::UpdateComputed()
{
if (computed) {
delete computed;