mirror of
https://github.com/RGBCube/serenity
synced 2025-07-10 09:57:35 +00:00
Kernel: Fix all compiler warnings.
This commit is contained in:
parent
17acc1e0a8
commit
46a06c23e3
13 changed files with 19 additions and 19 deletions
|
@ -33,7 +33,7 @@ public:
|
|||
const String& name() const { return m_name; }
|
||||
void set_name(const String& name) { m_name = name; }
|
||||
|
||||
size_t page_count() const { return m_size / PAGE_SIZE; }
|
||||
int page_count() const { return m_size / PAGE_SIZE; }
|
||||
const Vector<RefPtr<PhysicalPage>>& physical_pages() const { return m_physical_pages; }
|
||||
Vector<RefPtr<PhysicalPage>>& physical_pages() { return m_physical_pages; }
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue