mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 15:17:36 +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
|
@ -27,7 +27,7 @@ private:
|
|||
explicit PrivateInodeVMObject(Inode&, size_t);
|
||||
explicit PrivateInodeVMObject(const PrivateInodeVMObject&);
|
||||
|
||||
virtual const char* class_name() const override { return "PrivateInodeVMObject"; }
|
||||
virtual StringView class_name() const override { return "PrivateInodeVMObject"sv; }
|
||||
|
||||
PrivateInodeVMObject& operator=(const PrivateInodeVMObject&) = delete;
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue