mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-30 12:49:19 +00:00
Refactor FS::add_inode_to_directory() into Inode::add_child().
This commit is contained in:
parent
4f142b86ec
commit
6451b98ad4
Notes:
sideshowbarker
2024-07-19 16:07:10 +09:00
Author: https://github.com/awesomekling
Commit: 6451b98ad4
5 changed files with 31 additions and 20 deletions
|
@ -263,3 +263,13 @@ bool SynthFSInode::write(const ByteBuffer&)
|
|||
ASSERT_NOT_REACHED();
|
||||
return false;
|
||||
}
|
||||
|
||||
bool SynthFSInode::add_child(InodeIdentifier child_id, const String& name, byte file_type, int& error)
|
||||
{
|
||||
(void) child_id;
|
||||
(void) name;
|
||||
(void) file_type;
|
||||
(void) error;
|
||||
ASSERT_NOT_REACHED();
|
||||
return false;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue