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-use-reference.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/object/sp-use-reference.cpp') diff --git a/src/object/sp-use-reference.cpp b/src/object/sp-use-reference.cpp index d5fdfc01a..67cf5c778 100644 --- a/src/object/sp-use-reference.cpp +++ b/src/object/sp-use-reference.cpp @@ -46,7 +46,7 @@ SPUsePath::SPUsePath(SPObject* i_owner):SPUseReference(i_owner) user_unlink = nullptr; } -SPUsePath::~SPUsePath(void) +SPUsePath::~SPUsePath() { if (originalPath != nullptr) { originalPath->unref(); @@ -82,7 +82,7 @@ SPUsePath::link(char *to) } void -SPUsePath::unlink(void) +SPUsePath::unlink() { g_free(sourceHref); sourceHref = nullptr; @@ -103,7 +103,7 @@ SPUsePath::start_listening(SPObject* to) } void -SPUsePath::quit_listening(void) +SPUsePath::quit_listening() { if ( sourceObject == nullptr ) { return; -- cgit v1.2.3