1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 01:07:36 +00:00

Kernel: Use operator ""sv in all class_name() implementations

Previously there was a mix of returning plain strings and returning
explicit string views using `operator ""sv`. This change switches them
all to standardized on `operator ""sv` as it avoids a call to strlen.
This commit is contained in:
Brian Gianforcaro 2021-10-02 15:24:00 -07:00 committed by Andreas Kling
parent 836c22ea13
commit 5f1c98e576
39 changed files with 39 additions and 39 deletions

View file

@ -49,7 +49,7 @@ protected:
mutable Spinlock m_queue_lock;
CircularQueue<Event, 16> m_queue;
// ^CharacterDevice
virtual StringView class_name() const override { return "KeyboardDevice"; }
virtual StringView class_name() const override { return "KeyboardDevice"sv; }
u8 m_modifiers { 0 };
bool m_caps_lock_to_ctrl_pressed { false };

View file

@ -34,7 +34,7 @@ public:
protected:
MouseDevice();
// ^CharacterDevice
virtual StringView class_name() const override { return "MouseDevice"; }
virtual StringView class_name() const override { return "MouseDevice"sv; }
mutable Spinlock m_queue_lock;
CircularQueue<MousePacket, 100> m_queue;

View file

@ -44,7 +44,7 @@ private:
virtual bool handle_irq(const RegisterState&) override;
// ^CharacterDevice
virtual StringView class_name() const override { return "KeyboardDevice"; }
virtual StringView class_name() const override { return "KeyboardDevice"sv; }
};
}