aboutsummaryrefslogtreecommitdiff
path: root/kernel/src/filesystem/mount_table.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kernel/src/filesystem/mount_table.cpp')
-rw-r--r--kernel/src/filesystem/mount_table.cpp2
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);