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/extension/param/string.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/extension/param/string.h') diff --git a/src/extension/param/string.h b/src/extension/param/string.h index e911565fe..20bfd849c 100644 --- a/src/extension/param/string.h +++ b/src/extension/param/string.h @@ -30,7 +30,7 @@ public: int indent, Inkscape::Extension::Extension * ext, Inkscape::XML::Node * xml); - ~ParamString(void) override; + ~ParamString() override; /** \brief Returns \c _value, with a \i const to protect it. */ const gchar *get(SPDocument const * /*doc*/, Inkscape::XML::Node const * /*node*/) const { return _value; } @@ -45,7 +45,7 @@ public: void string(std::string &string) const override; void setMaxLength(int maxLenght) { _max_length = maxLenght; } - int getMaxLength(void) { return _max_length; } + int getMaxLength() { return _max_length; } }; -- cgit v1.2.3