From 249ef8dc8a47a40a2b28156136d3e131caf71183 Mon Sep 17 00:00:00 2001 From: Felix Morgner Date: Mon, 15 Jun 2026 09:50:50 +0200 Subject: build: configure naming rule checks --- arch/x86_64/arch/boot/ld.hpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'arch') diff --git a/arch/x86_64/arch/boot/ld.hpp b/arch/x86_64/arch/boot/ld.hpp index 988723d..a8b83d6 100644 --- a/arch/x86_64/arch/boot/ld.hpp +++ b/arch/x86_64/arch/boot/ld.hpp @@ -27,33 +27,33 @@ namespace arch::boot //! This symbol marks the start of the kernel image in physical memory. //! //! @see _end_physical - extern std::byte _start_physical; + extern std::byte _start_physical; // NOLINT(readability-identifier-naming) //! The first byte after the loaded kernel image. //! //! This symbol marks the end of the kernel image in physical memory. //! //! @see _start_physical - extern std::byte _end_physical; + extern std::byte _end_physical; // NOLINT(readability-identifier-naming) //! The first byte of the loaded kernel image in the virtual address space. //! //! This symbol and marks the start of the kernel image in virtual memory. //! //! @see _end_virtual - extern std::byte _start_virtual; + extern std::byte _start_virtual; // NOLINT(readability-identifier-naming) //! The first byte after the loaded kernel image in the virtual address space. //! //! This symbol marks the end of the kernel image in virtual memory. //! //! @see _start_virtual - extern std::byte _end_virtual; + extern std::byte _end_virtual; // NOLINT(readability-identifier-naming) //! The first byte of the kernel's virtual address space. //! //! This symbol marks beginning of the kernel virtual address space. - extern std::byte TEACHOS_VMA; + extern std::byte TEACHOS_VMA; // NOLINT(readability-identifier-naming) } } // namespace arch::boot -- cgit v1.2.3