mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-07 01:56:38 +00:00
Kernel: Use = default for empty destructors
This commit is contained in:
parent
e15be89e18
commit
c0341215de
Notes:
sideshowbarker
2024-07-18 04:56:06 +09:00
Author: https://github.com/bgianfo
Commit: c0341215de
Pull-request: https://github.com/SerenityOS/serenity/pull/9720
4 changed files with 2 additions and 10 deletions
|
@ -88,7 +88,7 @@ class Device
|
|||
: public PCI::Device
|
||||
, public IRQHandler {
|
||||
public:
|
||||
virtual ~Device() override;
|
||||
virtual ~Device() override = default;
|
||||
|
||||
protected:
|
||||
virtual StringView class_name() const = 0;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue