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

Kernel: Use StringView more in Inode and subclasses.

This commit is contained in:
Andreas Kling 2019-06-09 10:25:19 +02:00
parent cdb44be703
commit 8258b699db
7 changed files with 14 additions and 14 deletions

View file

@ -262,14 +262,14 @@ ssize_t SynthFSInode::write_bytes(off_t offset, ssize_t size, const byte* buffer
return 0;
}
KResult SynthFSInode::add_child(InodeIdentifier child_id, const String& name, mode_t)
KResult SynthFSInode::add_child(InodeIdentifier child_id, const StringView& name, mode_t)
{
(void)child_id;
(void)name;
ASSERT_NOT_REACHED();
}
KResult SynthFSInode::remove_child(const String& name)
KResult SynthFSInode::remove_child(const StringView& name)
{
(void)name;
ASSERT_NOT_REACHED();