diff options
author | Andreas Kling <kling@serenityos.org> | 2021-11-11 00:55:02 +0100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-11-11 01:27:46 +0100 |
commit | 8b1108e4858f797c9216dc8ae4a3918ad50c73b4 (patch) | |
tree | ca64ba25aa735d25013d76c6d83570496c742014 /Kernel/FileSystem/Plan9FileSystem.cpp | |
parent | ad5d217e760c7fb73ffc0c4c827d767d6be8ec80 (diff) | |
download | serenity-8b1108e4858f797c9216dc8ae4a3918ad50c73b4.zip |
Everywhere: Pass AK::StringView by value
Diffstat (limited to 'Kernel/FileSystem/Plan9FileSystem.cpp')
-rw-r--r-- | Kernel/FileSystem/Plan9FileSystem.cpp | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/Kernel/FileSystem/Plan9FileSystem.cpp b/Kernel/FileSystem/Plan9FileSystem.cpp index c543ada187..3834498616 100644 --- a/Kernel/FileSystem/Plan9FileSystem.cpp +++ b/Kernel/FileSystem/Plan9FileSystem.cpp @@ -112,7 +112,7 @@ public: class Decoder { public: - explicit Decoder(const StringView& data) + explicit Decoder(StringView data) : m_data(data) { } @@ -144,8 +144,8 @@ public: Message& operator<<(u16); Message& operator<<(u32); Message& operator<<(u64); - Message& operator<<(const StringView&); - void append_data(const StringView&); + Message& operator<<(StringView); + void append_data(StringView); template<typename T> Message& operator>>(T& t) @@ -228,7 +228,7 @@ ErrorOr<void> Plan9FS::initialize() return {}; } -Plan9FS::ProtocolVersion Plan9FS::parse_protocol_version(const StringView& s) const +Plan9FS::ProtocolVersion Plan9FS::parse_protocol_version(StringView s) const { if (s == "9P2000.L") return ProtocolVersion::v9P2000L; @@ -262,7 +262,7 @@ Plan9FS::Message& Plan9FS::Message::operator<<(u64 number) return append_number(number); } -Plan9FS::Message& Plan9FS::Message::operator<<(const StringView& string) +Plan9FS::Message& Plan9FS::Message::operator<<(StringView string) { *this << static_cast<u16>(string.length()); // FIXME: Handle append failure. @@ -270,7 +270,7 @@ Plan9FS::Message& Plan9FS::Message::operator<<(const StringView& string) return *this; } -void Plan9FS::Message::append_data(const StringView& data) +void Plan9FS::Message::append_data(StringView data) { *this << static_cast<u32>(data.length()); // FIXME: Handle append failure. @@ -908,13 +908,13 @@ ErrorOr<NonnullRefPtr<Inode>> Plan9FSInode::create_child(StringView, mode_t, dev return ENOTIMPL; } -ErrorOr<void> Plan9FSInode::add_child(Inode&, const StringView&, mode_t) +ErrorOr<void> Plan9FSInode::add_child(Inode&, StringView, mode_t) { // TODO return ENOTIMPL; } -ErrorOr<void> Plan9FSInode::remove_child(const StringView&) +ErrorOr<void> Plan9FSInode::remove_child(StringView) { // TODO return ENOTIMPL; |