From 160bda72280fd61e3059163c267abf542439f852 Mon Sep 17 00:00:00 2001 From: Lenny Maiorani Date: Thu, 10 Feb 2022 12:28:48 -0700 Subject: Applications: Use default constructors/destructors https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#cother-other-default-operation-rules "The compiler is more likely to get the default semantics right and you cannot implement these functions better than the compiler." --- Userland/Applications/SystemMonitor/ProcessUnveiledPathsWidget.cpp | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) (limited to 'Userland/Applications/SystemMonitor/ProcessUnveiledPathsWidget.cpp') diff --git a/Userland/Applications/SystemMonitor/ProcessUnveiledPathsWidget.cpp b/Userland/Applications/SystemMonitor/ProcessUnveiledPathsWidget.cpp index 9d4dff2316..4678192477 100644 --- a/Userland/Applications/SystemMonitor/ProcessUnveiledPathsWidget.cpp +++ b/Userland/Applications/SystemMonitor/ProcessUnveiledPathsWidget.cpp @@ -1,5 +1,6 @@ /* * Copyright (c) 2018-2020, Andreas Kling + * Copyright (c) 2022, the SerenityOS developers. * * SPDX-License-Identifier: BSD-2-Clause */ @@ -24,10 +25,6 @@ ProcessUnveiledPathsWidget::ProcessUnveiledPathsWidget() m_table_view->set_model(MUST(GUI::SortingProxyModel::create(*m_model))); } -ProcessUnveiledPathsWidget::~ProcessUnveiledPathsWidget() -{ -} - void ProcessUnveiledPathsWidget::set_pid(pid_t pid) { if (m_pid == pid) -- cgit v1.2.3