diff options
| author | Felix Morgner <felix.morgner@ost.ch> | 2026-06-15 09:56:47 +0200 |
|---|---|---|
| committer | Felix Morgner <felix.morgner@ost.ch> | 2026-06-15 09:56:47 +0200 |
| commit | b6fa48edbdb916022739e792b5140f42b430c469 (patch) | |
| tree | 1972a525abf7ebd58fb45019f6a1f21ade3a06ab | |
| parent | 249ef8dc8a47a40a2b28156136d3e131caf71183 (diff) | |
| download | kernel-b6fa48edbdb916022739e792b5140f42b430c469.tar.xz kernel-b6fa48edbdb916022739e792b5140f42b430c469.zip | |
x86_64: suppress lint on init_array symbols
| -rw-r--r-- | arch/x86_64/arch/boot/initialize_runtime.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/x86_64/arch/boot/initialize_runtime.cpp b/arch/x86_64/arch/boot/initialize_runtime.cpp index b08c13c..e548f4a 100644 --- a/arch/x86_64/arch/boot/initialize_runtime.cpp +++ b/arch/x86_64/arch/boot/initialize_runtime.cpp @@ -9,8 +9,10 @@ namespace arch::boot { using global_initializer = auto (*)() -> void; + // NOLINTBEGIN(readability-identifier-naming) extern global_initializer __init_array_start; extern global_initializer __init_array_end; + // NOLINTEND(readability-identifier-naming) auto invoke_global_constructors() -> void { |
