mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 04:37:34 +00:00
Kernel: Use = default for empty destructors
This commit is contained in:
parent
e15be89e18
commit
c0341215de
4 changed files with 2 additions and 10 deletions
|
@ -21,7 +21,7 @@ class RNG final
|
|||
public:
|
||||
static NonnullRefPtr<RNG> must_create(PCI::Address address);
|
||||
virtual StringView purpose() const override { return class_name(); }
|
||||
virtual ~RNG() override;
|
||||
virtual ~RNG() override = default;
|
||||
|
||||
private:
|
||||
virtual StringView class_name() const override { return "VirtIOConsole"; }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue