aboutsummaryrefslogtreecommitdiff
path: root/kernel
diff options
context:
space:
mode:
Diffstat (limited to 'kernel')
-rw-r--r--kernel/src/filesystem/type_registry.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/kernel/src/filesystem/type_registry.cpp b/kernel/src/filesystem/type_registry.cpp
index d917c81..74b1209 100644
--- a/kernel/src/filesystem/type_registry.cpp
+++ b/kernel/src/filesystem/type_registry.cpp
@@ -16,8 +16,12 @@ namespace kernel::filesystem
extern "C"
{
+ // We need to suppress clang-tidy linting warnings here, since these symbols are generated by the linker and we
+ // cannot choose their names, unless we wanted to extend the linker script needlessly.
+ // NOLINTBEGIN(readability-identifier-naming)
extern type_registry::pointer const __start_fs_types;
extern type_registry::pointer const __stop_fs_types;
+ // NOLINTEND(readability-identifier-naming)
}
namespace