diff options
Diffstat (limited to 'Userland/Applications/SystemMonitor/ThreadStackWidget.h')
-rw-r--r-- | Userland/Applications/SystemMonitor/ThreadStackWidget.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Userland/Applications/SystemMonitor/ThreadStackWidget.h b/Userland/Applications/SystemMonitor/ThreadStackWidget.h index b3442d1b88..25756a1821 100644 --- a/Userland/Applications/SystemMonitor/ThreadStackWidget.h +++ b/Userland/Applications/SystemMonitor/ThreadStackWidget.h @@ -1,5 +1,6 @@ /* * Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org> + * Copyright (c) 2022, the SerenityOS developers. * * SPDX-License-Identifier: BSD-2-Clause */ @@ -12,7 +13,7 @@ class ThreadStackWidget final : public GUI::Widget { C_OBJECT(ThreadStackWidget) public: - virtual ~ThreadStackWidget() override; + virtual ~ThreadStackWidget() override = default; void set_ids(pid_t pid, pid_t tid); void refresh(); |