mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 17:17:44 +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
|
@ -19,12 +19,12 @@ public:
|
|||
|
||||
private:
|
||||
explicit ContiguousVMObject(size_t, NonnullRefPtrVector<PhysicalPage>&);
|
||||
explicit ContiguousVMObject(const ContiguousVMObject&);
|
||||
explicit ContiguousVMObject(ContiguousVMObject const&);
|
||||
|
||||
virtual StringView class_name() const override { return "ContiguousVMObject"sv; }
|
||||
virtual RefPtr<VMObject> try_clone() override;
|
||||
|
||||
ContiguousVMObject& operator=(const ContiguousVMObject&) = delete;
|
||||
ContiguousVMObject& operator=(ContiguousVMObject const&) = delete;
|
||||
ContiguousVMObject& operator=(ContiguousVMObject&&) = delete;
|
||||
ContiguousVMObject(ContiguousVMObject&&) = delete;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue