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/ui/view/edit-widget-interface.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/ui/view') diff --git a/src/ui/view/edit-widget-interface.h b/src/ui/view/edit-widget-interface.h index a8f68518f..f2e34b534 100644 --- a/src/ui/view/edit-widget-interface.h +++ b/src/ui/view/edit-widget-interface.h @@ -34,8 +34,8 @@ namespace View { */ struct EditWidgetInterface { - EditWidgetInterface() {} - virtual ~EditWidgetInterface() {} + EditWidgetInterface() = default; + virtual ~EditWidgetInterface() = default; /// Returns pointer to window UI object as void* virtual Gtk::Window *getWindow() = 0; -- cgit v1.2.3