diff options
author | Brian Gianforcaro <bgianf@serenityos.org> | 2021-10-02 15:24:00 -0700 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-10-03 13:36:10 +0200 |
commit | 5f1c98e5764c00b4601c959013291c8804e35618 (patch) | |
tree | cf0ffd7806a9f5e779db322758d6e2495e55a534 /Kernel/FileSystem/InodeWatcher.h | |
parent | 836c22ea1370703279791a864645ab2c6aad2dac (diff) | |
download | serenity-5f1c98e5764c00b4601c959013291c8804e35618.zip |
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.
Diffstat (limited to 'Kernel/FileSystem/InodeWatcher.h')
-rw-r--r-- | Kernel/FileSystem/InodeWatcher.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Kernel/FileSystem/InodeWatcher.h b/Kernel/FileSystem/InodeWatcher.h index 041e3ece77..383506bc91 100644 --- a/Kernel/FileSystem/InodeWatcher.h +++ b/Kernel/FileSystem/InodeWatcher.h @@ -51,7 +51,7 @@ public: virtual KResult close() override; virtual String absolute_path(const OpenFileDescription&) const override; - virtual StringView class_name() const override { return "InodeWatcher"; }; + virtual StringView class_name() const override { return "InodeWatcher"sv; }; virtual bool is_inode_watcher() const override { return true; } void notify_inode_event(Badge<Inode>, InodeIdentifier, InodeWatcherEvent::Type, String const& name = {}); |