diff options
| author | Lukas Oesch <lukasoesch20@gmail.com> | 2026-06-07 18:54:49 +0200 |
|---|---|---|
| committer | Lukas Oesch <lukasoesch20@gmail.com> | 2026-06-07 18:54:49 +0200 |
| commit | 66ea58d7c5b41475e0be61172966613fbd14d43b (patch) | |
| tree | 36b15d53fea04f4f9d9af817100f7ad013bd9b5c /kernel/src/filesystem | |
| parent | 0a772bdb97ea7eccc7bdf079e7bc09e5f27c1718 (diff) | |
| download | kernel-66ea58d7c5b41475e0be61172966613fbd14d43b.tar.xz kernel-66ea58d7c5b41475e0be61172966613fbd14d43b.zip | |
small refactoring
Diffstat (limited to 'kernel/src/filesystem')
| -rw-r--r-- | kernel/src/filesystem/mount_table.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/src/filesystem/mount_table.cpp b/kernel/src/filesystem/mount_table.cpp index af8434b..e4baac7 100644 --- a/kernel/src/filesystem/mount_table.cpp +++ b/kernel/src/filesystem/mount_table.cpp @@ -18,7 +18,7 @@ namespace kernel::filesystem [&parent_mount](auto const & mount) { return mount->parent_mount() == parent_mount; }); } - void mount_table::add_mount(kstd::shared_ptr<mount> const & mount) + auto mount_table::add_mount(kstd::shared_ptr<mount> const & mount) -> void { m_mounts.push_back(mount); |
