From 51ad3da9997ea8ee076b614db3a32d20daa6beb4 Mon Sep 17 00:00:00 2001 From: Michel Hermier Date: Thu, 25 Mar 2021 08:02:58 +0100 Subject: [PATCH] Kernel: Remove unused MBRPartitionTable::m_partitions_count. --- Kernel/Storage/Partition/MBRPartitionTable.h | 1 - 1 file changed, 1 deletion(-) diff --git a/Kernel/Storage/Partition/MBRPartitionTable.h b/Kernel/Storage/Partition/MBRPartitionTable.h index 8904a4f346..4e539d7ee5 100644 --- a/Kernel/Storage/Partition/MBRPartitionTable.h +++ b/Kernel/Storage/Partition/MBRPartitionTable.h @@ -82,6 +82,5 @@ private: bool m_header_valid { false }; const u32 m_start_lba; ByteBuffer m_cached_header; - size_t m_partitions_count { 0 }; }; }