diff options
| -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 { |
