diff --git a/Kernel/Devices/DiskDevice.h b/Kernel/Devices/DiskDevice.h index 873a91c5d7..83f38fe9a3 100644 --- a/Kernel/Devices/DiskDevice.h +++ b/Kernel/Devices/DiskDevice.h @@ -9,12 +9,11 @@ typedef u32 DiskOffset; class DiskDevice : public BlockDevice { public: - virtual ~DiskDevice(); + virtual ~DiskDevice() override; virtual unsigned block_size() const = 0; virtual bool read_block(unsigned index, u8*) const = 0; virtual bool write_block(unsigned index, const u8*) = 0; - virtual const char* class_name() const = 0; bool read(DiskOffset, unsigned length, u8*) const; bool write(DiskOffset, unsigned length, const u8*);