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; } }; } -