1
Fork 0
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:
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

@ -63,7 +63,7 @@ public:
protected:
explicit VMObject(size_t);
explicit VMObject(const VMObject&);
explicit VMObject(VMObject const&);
template<typename Callback>
void for_each_region(Callback);
@ -75,7 +75,7 @@ protected:
mutable SpinLock<u8> m_lock;
private:
VMObject& operator=(const VMObject&) = delete;
VMObject& operator=(VMObject const&) = delete;
VMObject& operator=(VMObject&&) = delete;
VMObject(VMObject&&) = delete;