mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 20:18:12 +00:00
Kernel: Convert VMObject & subclasses to east-const style
This commit is contained in:
parent
1610669519
commit
9e15708aa0
12 changed files with 41 additions and 41 deletions
|
@ -25,11 +25,11 @@ private:
|
|||
virtual bool is_private_inode() const override { return true; }
|
||||
|
||||
explicit PrivateInodeVMObject(Inode&, size_t);
|
||||
explicit PrivateInodeVMObject(const PrivateInodeVMObject&);
|
||||
explicit PrivateInodeVMObject(PrivateInodeVMObject const&);
|
||||
|
||||
virtual StringView class_name() const override { return "PrivateInodeVMObject"sv; }
|
||||
|
||||
PrivateInodeVMObject& operator=(const PrivateInodeVMObject&) = delete;
|
||||
PrivateInodeVMObject& operator=(PrivateInodeVMObject const&) = delete;
|
||||
};
|
||||
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue