diff options
author | Brian Gianforcaro <bgianf@serenityos.org> | 2021-09-01 02:05:46 -0700 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-09-01 18:06:14 +0200 |
commit | 16f0248ca2b405d800ae90507172fe2bcecb3ce0 (patch) | |
tree | 6267b65869507725d7c99072e425a6ee31c9c4be /Userland/DevTools/Profiler/FlameGraphView.cpp | |
parent | c0341215de4a007bb8aedaca465a620f17c5679f (diff) | |
download | serenity-16f0248ca2b405d800ae90507172fe2bcecb3ce0.zip |
Profiler: Use = default for empty destructor
Diffstat (limited to 'Userland/DevTools/Profiler/FlameGraphView.cpp')
-rw-r--r-- | Userland/DevTools/Profiler/FlameGraphView.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/Userland/DevTools/Profiler/FlameGraphView.cpp b/Userland/DevTools/Profiler/FlameGraphView.cpp index 5634dbc9a2..a7de5887f0 100644 --- a/Userland/DevTools/Profiler/FlameGraphView.cpp +++ b/Userland/DevTools/Profiler/FlameGraphView.cpp @@ -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) |