mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 11:38:11 +00:00
Kernel: Always pass InodeIdentifier by value
These objects are small, there are no benefits to passing by reference.
This commit is contained in:
parent
db4388f21b
commit
c427f8bbeb
2 changed files with 4 additions and 4 deletions
|
@ -106,8 +106,8 @@ protected:
|
|||
void set_metadata_dirty(bool);
|
||||
ErrorOr<void> prepare_to_write_data();
|
||||
|
||||
void did_add_child(InodeIdentifier const& child_id, String const& name);
|
||||
void did_remove_child(InodeIdentifier const& child_id, String const& name);
|
||||
void did_add_child(InodeIdentifier child_id, String const& name);
|
||||
void did_remove_child(InodeIdentifier child_id, String const& name);
|
||||
void did_modify_contents();
|
||||
void did_delete_self();
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue