From b6fa48edbdb916022739e792b5140f42b430c469 Mon Sep 17 00:00:00 2001 From: Felix Morgner Date: Mon, 15 Jun 2026 09:56:47 +0200 Subject: x86_64: suppress lint on init_array symbols --- arch/x86_64/arch/boot/initialize_runtime.cpp | 2 ++ 1 file changed, 2 insertions(+) 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 { -- cgit v1.2.3