1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 21:37:36 +00:00

Profiler: Use = default for empty destructor

This commit is contained in:
Brian Gianforcaro 2021-09-01 02:05:46 -07:00 committed by Andreas Kling
parent c0341215de
commit 16f0248ca2
2 changed files with 1 additions and 5 deletions

View file

@ -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;