aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--kernel/filesystem/include/filesystem/vfs.hpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/kernel/filesystem/include/filesystem/vfs.hpp b/kernel/filesystem/include/filesystem/vfs.hpp
index a881241..1d95d4a 100644
--- a/kernel/filesystem/include/filesystem/vfs.hpp
+++ b/kernel/filesystem/include/filesystem/vfs.hpp
@@ -35,7 +35,8 @@ namespace filesystem
std::optional<mount> m_root_mount;
std::array<mount, 10> m_mounts; // TODO BA-FS26 remove when kstd::vector is available and used
- std::array<std::optional<device_node_entry>, 10> m_device_nodes; // TODO BA-FS26 use kstd::vector
+ std::array<std::optional<device_node_entry>, 10>
+ m_device_nodes; // TODO BA-FS26 use kstd::vector // TODO BA-FS26 remove again, use
};
} // namespace filesystem