Skip to content

Commit

Permalink
Kernel: Remove unused VMObject::is_contiguous()
Browse files Browse the repository at this point in the history
  • Loading branch information
awesomekling committed Aug 16, 2021
1 parent 4226b66 commit b70b3a9
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion Kernel/Memory/VMObject.h
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@ class VMObject
virtual bool is_inode() const { return false; }
virtual bool is_shared_inode() const { return false; }
virtual bool is_private_inode() const { return false; }
virtual bool is_contiguous() const { return false; }

size_t page_count() const { return m_physical_pages.size(); }
Span<RefPtr<PhysicalPage> const> physical_pages() const { return m_physical_pages.span(); }
Expand Down

0 comments on commit b70b3a9

Please sign in to comment.