summaryrefslogtreecommitdiff
path: root/Kernel/Storage/ATA/ATADiskDevice.cpp
diff options
context:
space:
mode:
authorLenny Maiorani <lenny@serenityos.org>2022-03-16 13:15:15 -0600
committerBrian Gianforcaro <b.gianfo@gmail.com>2022-03-17 00:51:36 -0700
commit190cf1507b88d25d04148d983d72a378035b05e9 (patch)
treea0aa522b2a47f022b3b791b14e3b6902f3df29d6 /Kernel/Storage/ATA/ATADiskDevice.cpp
parent68f75ab98e4d8a7e48de48c2497a8395b79a4ba5 (diff)
downloadserenity-190cf1507b88d25d04148d983d72a378035b05e9.zip
Kernel: Use default constructors/destructors
https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#cother-other-default-operation-rules "The compiler is more likely to get the default semantics right and you cannot implement these functions better than the compiler."
Diffstat (limited to 'Kernel/Storage/ATA/ATADiskDevice.cpp')
-rw-r--r--Kernel/Storage/ATA/ATADiskDevice.cpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/Kernel/Storage/ATA/ATADiskDevice.cpp b/Kernel/Storage/ATA/ATADiskDevice.cpp
index dd2f484661..4d2687725f 100644
--- a/Kernel/Storage/ATA/ATADiskDevice.cpp
+++ b/Kernel/Storage/ATA/ATADiskDevice.cpp
@@ -31,9 +31,7 @@ ATADiskDevice::ATADiskDevice(const ATAController& controller, ATADevice::Address
{
}
-ATADiskDevice::~ATADiskDevice()
-{
-}
+ATADiskDevice::~ATADiskDevice() = default;
StringView ATADiskDevice::class_name() const
{