1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 05:47:35 +00:00

PartitionTable: Removing unnecessary declarations from GPT & MBR classes

This commit is contained in:
supercomputer7 2019-10-07 12:10:06 +03:00 committed by Andreas Kling
parent 669ee82546
commit 334e039294
2 changed files with 0 additions and 2 deletions

View file

@ -53,7 +53,6 @@ public:
private: private:
NonnullRefPtr<DiskDevice> m_device; NonnullRefPtr<DiskDevice> m_device;
ByteBuffer read_header() const;
const GPTPartitionHeader& header() const; const GPTPartitionHeader& header() const;
u8 m_cached_header[512]; u8 m_cached_header[512];

View file

@ -42,7 +42,6 @@ public:
private: private:
NonnullRefPtr<DiskDevice> m_device; NonnullRefPtr<DiskDevice> m_device;
ByteBuffer read_header() const;
const MBRPartitionHeader& header() const; const MBRPartitionHeader& header() const;
u8 m_cached_header[512]; u8 m_cached_header[512];