From 004e50d84773242a000f5cadb89466bbc793e1a8 Mon Sep 17 00:00:00 2001 From: Emmanuel Gil Peyrot Date: Fri, 15 Jun 2018 19:02:56 +0200 Subject: =?UTF-8?q?Run=20clang-tidy=E2=80=99s=20modernize-use-equals-defau?= =?UTF-8?q?lt=20pass.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This replaces empty constructors and destructors with the default keyword. --- src/object/sp-path.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'src/object/sp-path.cpp') diff --git a/src/object/sp-path.cpp b/src/object/sp-path.cpp index 51fa549e7..44070b6a3 100644 --- a/src/object/sp-path.cpp +++ b/src/object/sp-path.cpp @@ -112,8 +112,7 @@ void SPPath::convert_to_guides() const { SPPath::SPPath() : SPShape(), connEndPair(this) { } -SPPath::~SPPath() { -} +SPPath::~SPPath() = default; void SPPath::build(SPDocument *document, Inkscape::XML::Node *repr) { /* Are these calls actually necessary? */ -- cgit v1.2.3