1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 12:47:35 +00:00

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

This commit is contained in:
Andreas Kling 2021-07-17 20:59:06 +02:00
parent a2e734d202
commit a803c4026c
9 changed files with 8 additions and 13 deletions

View file

@ -23,7 +23,7 @@ public:
static NonnullRefPtr<DevFS> create();
virtual bool initialize() override;
virtual const char* class_name() const override { return "DevFS"; }
virtual StringView class_name() const override { return "DevFS"sv; }
void notify_new_device(Device&);
void notify_device_removal(Device&);