diff options
author | Michel Hermier <michel.hermier@gmail.com> | 2021-03-25 08:02:58 +0100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-03-26 16:54:05 +0100 |
commit | 51ad3da9997ea8ee076b614db3a32d20daa6beb4 (patch) | |
tree | 6cc2802e064a293ef7bdb6af69a72440d9f8d35e /Kernel | |
parent | 4ac49eabd53f719a9a69b8cd8db1987ca328ef9f (diff) | |
download | serenity-51ad3da9997ea8ee076b614db3a32d20daa6beb4.zip |
Kernel: Remove unused MBRPartitionTable::m_partitions_count.
Diffstat (limited to 'Kernel')
-rw-r--r-- | Kernel/Storage/Partition/MBRPartitionTable.h | 1 |
1 files changed, 0 insertions, 1 deletions
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 }; }; } |