Kernel: Use = default for empty destructors

This commit is contained in:
Brian Gianforcaro 2021-09-01 02:05:11 -07:00 committed by Andreas Kling
commit c0341215de
Notes: sideshowbarker 2024-07-18 04:56:06 +09:00
4 changed files with 2 additions and 10 deletions

View file

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