aboutsummaryrefslogtreecommitdiff
path: root/arch/x86_64
diff options
context:
space:
mode:
authorMarcel Braun <marcel.braun@ost.ch>2026-03-17 22:44:22 +0100
committerMarcel Braun <marcel.braun@ost.ch>2026-03-17 22:44:22 +0100
commitb3538509091a59cd945ff48509ece5a97c59071d (patch)
treec28015a0f74c31a7a27063fa8765b59d5b326c5c /arch/x86_64
parente4291ea7c01cad04a02ca3f577dba9ccbadad110 (diff)
parentd2e7a4e2fd5a2973b6c9071951eaf8b2d24d84a3 (diff)
downloadteachos-b3538509091a59cd945ff48509ece5a97c59071d.tar.xz
teachos-b3538509091a59cd945ff48509ece5a97c59071d.zip
Merge branch 'fmorgner/lint-fixes' into 'develop-BA-FS26'
lint: fix some issues detected by clang-tidy See merge request teachos/kernel!13
Diffstat (limited to 'arch/x86_64')
-rw-r--r--arch/x86_64/src/memory/region_allocator.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/x86_64/src/memory/region_allocator.cpp b/arch/x86_64/src/memory/region_allocator.cpp
index 2690a7c..4ee3ca4 100644
--- a/arch/x86_64/src/memory/region_allocator.cpp
+++ b/arch/x86_64/src/memory/region_allocator.cpp
@@ -85,14 +85,14 @@ namespace arch::memory
{
m_next_frame = m_kernel_end + 1;
advanced = true;
- break;
+ continue;
}
if (falls_within(m_next_frame, m_multiboot_start, m_multiboot_end))
{
m_next_frame = m_multiboot_end + 1;
advanced = true;
- break;
+ continue;
}
if (m_multiboot_information)