Kernel: Make FileSystem::class_name() return a StringView

This commit is contained in:
Andreas Kling 2021-07-17 20:59:06 +02:00
commit a803c4026c
Notes: sideshowbarker 2024-07-18 08:51:48 +09:00
9 changed files with 8 additions and 13 deletions

View file

@ -23,7 +23,7 @@ public:
static NonnullRefPtr<DevPtsFS> create();
virtual bool initialize() override;
virtual const char* class_name() const override { return "DevPtsFS"; }
virtual StringView class_name() const override { return "DevPtsFS"sv; }
virtual NonnullRefPtr<Inode> root_inode() const override;