mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 02:17:34 +00:00
Profiler: Use = default for empty destructor
This commit is contained in:
parent
c0341215de
commit
16f0248ca2
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();
|
layout_bars();
|
||||||
}
|
}
|
||||||
|
|
||||||
FlameGraphView::~FlameGraphView()
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
GUI::ModelIndex const FlameGraphView::hovered_index() const
|
GUI::ModelIndex const FlameGraphView::hovered_index() const
|
||||||
{
|
{
|
||||||
if (!m_hovered_bar)
|
if (!m_hovered_bar)
|
||||||
|
|
|
@ -21,7 +21,7 @@ class FlameGraphView final : public GUI::Widget
|
||||||
C_OBJECT(FlameGraphView);
|
C_OBJECT(FlameGraphView);
|
||||||
|
|
||||||
public:
|
public:
|
||||||
virtual ~FlameGraphView() override;
|
virtual ~FlameGraphView() override = default;
|
||||||
|
|
||||||
Function<void()> on_hover_change;
|
Function<void()> on_hover_change;
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue