Kernel: Convert VMObject & subclasses to east-const style

This commit is contained in:
Andreas Kling
2021-07-22 00:02:34 +02:00
parent 1610669519
commit 9e15708aa0
12 changed files with 41 additions and 41 deletions

View File

@@ -17,7 +17,7 @@ InodeVMObject::InodeVMObject(Inode& inode, size_t size)
{
}
InodeVMObject::InodeVMObject(const InodeVMObject& other)
InodeVMObject::InodeVMObject(InodeVMObject const& other)
: VMObject(other)
, m_inode(other.m_inode)
, m_dirty_pages(page_count(), false)