From 334e0392949a5645a147728ac12663be3f6fe6de Mon Sep 17 00:00:00 2001 From: supercomputer7 Date: Mon, 7 Oct 2019 12:10:06 +0300 Subject: [PATCH] PartitionTable: Removing unnecessary declarations from GPT & MBR classes --- Kernel/Devices/GPTPartitionTable.h | 1 - Kernel/Devices/MBRPartitionTable.h | 1 - 2 files changed, 2 deletions(-) diff --git a/Kernel/Devices/GPTPartitionTable.h b/Kernel/Devices/GPTPartitionTable.h index 02d238454a..b2ec2dd224 100644 --- a/Kernel/Devices/GPTPartitionTable.h +++ b/Kernel/Devices/GPTPartitionTable.h @@ -53,7 +53,6 @@ public: private: NonnullRefPtr m_device; - ByteBuffer read_header() const; const GPTPartitionHeader& header() const; u8 m_cached_header[512]; diff --git a/Kernel/Devices/MBRPartitionTable.h b/Kernel/Devices/MBRPartitionTable.h index 6316fc0b03..e62beccc5d 100644 --- a/Kernel/Devices/MBRPartitionTable.h +++ b/Kernel/Devices/MBRPartitionTable.h @@ -42,7 +42,6 @@ public: private: NonnullRefPtr m_device; - ByteBuffer read_header() const; const MBRPartitionHeader& header() const; u8 m_cached_header[512];