Profiler: Use = default for empty destructor
This commit is contained in:
parent
c0341215de
commit
16f0248ca2
Notes:
sideshowbarker
2024-07-18 04:56:02 +09:00
Author: https://github.com/bgianfo Commit: https://github.com/SerenityOS/serenity/commit/16f0248ca2b Pull-request: https://github.com/SerenityOS/serenity/pull/9720
2 changed files with 1 additions and 5 deletions
|
@ -49,10 +49,6 @@ FlameGraphView::FlameGraphView(GUI::Model& model, int text_column, int width_col
|
|||
layout_bars();
|
||||
}
|
||||
|
||||
FlameGraphView::~FlameGraphView()
|
||||
{
|
||||
}
|
||||
|
||||
GUI::ModelIndex const FlameGraphView::hovered_index() const
|
||||
{
|
||||
if (!m_hovered_bar)
|
||||
|
|
|
@ -21,7 +21,7 @@ class FlameGraphView final : public GUI::Widget
|
|||
C_OBJECT(FlameGraphView);
|
||||
|
||||
public:
|
||||
virtual ~FlameGraphView() override;
|
||||
virtual ~FlameGraphView() override = default;
|
||||
|
||||
Function<void()> on_hover_change;
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue