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/object/sp-flowregion.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/object/sp-flowregion.cpp') 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::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; -- cgit v1.2.3