Everywhere: Prefer = default; to define [con,des]tructors

These lines would change with the new clang-format, so we might as well
use the preferred `= default`.
This commit is contained in:
Lucas CHOLLET
2025-10-08 15:27:36 +02:00
committed by Tim Schumacher
parent eb978a5053
commit 27e8dc5cbf
19 changed files with 21 additions and 21 deletions

View File

@@ -24,7 +24,7 @@ public:
static NonnullRefPtr<StorageDeviceAttributeSysFSComponent> must_create(StorageDeviceSysFSDirectory const& device_directory, Type);
virtual ErrorOr<size_t> read_bytes(off_t, size_t, UserOrKernelBuffer&, OpenFileDescription*) const override;
virtual ~StorageDeviceAttributeSysFSComponent() {};
virtual ~StorageDeviceAttributeSysFSComponent() = default;
virtual StringView name() const override;