From 7533d6145887aaefe5540672efd299afca9cca31 Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Sun, 16 Feb 2020 08:00:08 +0100 Subject: [PATCH] Kernel: Fix weird whitespace mistake in RangeAllocator --- Kernel/VM/RangeAllocator.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Kernel/VM/RangeAllocator.h b/Kernel/VM/RangeAllocator.h index 4e17819fd9..a826242c9e 100644 --- a/Kernel/VM/RangeAllocator.h +++ b/Kernel/VM/RangeAllocator.h @@ -72,7 +72,8 @@ public: Vector carve(const Range&); private: - VirtualAddress m_base; size_t m_size { 0 }; + VirtualAddress m_base; + size_t m_size { 0 }; }; class RangeAllocator { @@ -109,4 +110,3 @@ struct Traits : public GenericTraits { static constexpr bool is_trivial() { return true; } }; } -