From 52e462b4ef343f69722fb0754ff9808e29f62569 Mon Sep 17 00:00:00 2001 From: ParantezTech Date: Fri, 20 Feb 2026 18:14:44 +0300 Subject: [PATCH] clang-format --- src/core/memory.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/core/memory.cpp b/src/core/memory.cpp index e4429dffe..297317d77 100644 --- a/src/core/memory.cpp +++ b/src/core/memory.cpp @@ -1394,7 +1394,8 @@ bool MemoryManager::IsFlexibleCommittedVma(const VirtualMemoryArea& vma) const { const bool has_physical_tracking = vma.type == VMAType::Direct || vma.type == VMAType::Flexible || vma.type == VMAType::Pooled; if (has_physical_tracking) { - // Direct/flexible/pooled mappings should expose at least one physical sub-area when committed. + // Direct/flexible/pooled mappings should expose at least one physical sub-area when + // committed. return !vma.phys_areas.empty(); }