diff options
author | Andreas Kling <kling@serenityos.org> | 2021-08-17 00:05:59 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-08-17 01:21:47 +0200 |
commit | b70b3a9b92b9104ed0b1273178644e3e24759416 (patch) | |
tree | fd7c2adc32eca13b3ee83fbbd0f39c0b4ffc0f8c /Kernel | |
parent | 4226b662cddd5ce0b0d8a3abe45161a74b756a88 (diff) | |
download | serenity-b70b3a9b92b9104ed0b1273178644e3e24759416.zip |
Kernel: Remove unused VMObject::is_contiguous()
Diffstat (limited to 'Kernel')
-rw-r--r-- | Kernel/Memory/VMObject.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Kernel/Memory/VMObject.h b/Kernel/Memory/VMObject.h index 83f82b7ab0..132851e0ca 100644 --- a/Kernel/Memory/VMObject.h +++ b/Kernel/Memory/VMObject.h @@ -32,7 +32,6 @@ public: 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(); } |