summaryrefslogtreecommitdiff
path: root/Kernel/Bus/VirtIO/RNG.h
diff options
context:
space:
mode:
authorBrian Gianforcaro <bgianf@serenityos.org>2021-09-01 02:05:11 -0700
committerAndreas Kling <kling@serenityos.org>2021-09-01 18:06:14 +0200
commitc0341215de4a007bb8aedaca465a620f17c5679f (patch)
tree700c06f42afb995ff5f074a5b99df61bc9374c9c /Kernel/Bus/VirtIO/RNG.h
parente15be89e18fe563a73e796e30c815c8bfc249e8e (diff)
downloadserenity-c0341215de4a007bb8aedaca465a620f17c5679f.zip
Kernel: Use = default for empty destructors
Diffstat (limited to 'Kernel/Bus/VirtIO/RNG.h')
-rw-r--r--Kernel/Bus/VirtIO/RNG.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Kernel/Bus/VirtIO/RNG.h b/Kernel/Bus/VirtIO/RNG.h
index bc7947b0e0..ac0c92d719 100644
--- a/Kernel/Bus/VirtIO/RNG.h
+++ b/Kernel/Bus/VirtIO/RNG.h
@@ -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"; }