mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 19:38:12 +00:00
Kernel: Make VMObject::class_name() return a StringView
This commit is contained in:
parent
88d490566f
commit
68f2250768
5 changed files with 5 additions and 5 deletions
|
@ -25,7 +25,7 @@ private:
|
|||
explicit SharedInodeVMObject(Inode&, size_t);
|
||||
explicit SharedInodeVMObject(const SharedInodeVMObject&);
|
||||
|
||||
virtual const char* class_name() const override { return "SharedInodeVMObject"; }
|
||||
virtual StringView class_name() const override { return "SharedInodeVMObject"sv; }
|
||||
|
||||
SharedInodeVMObject& operator=(const SharedInodeVMObject&) = delete;
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue