1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 23:37:36 +00:00

Kernel: Fix weird whitespace mistake in RangeAllocator

This commit is contained in:
Andreas Kling 2020-02-16 08:00:08 +01:00
parent fc24b2b57d
commit 7533d61458

View file

@ -72,7 +72,8 @@ public:
Vector<Range, 2> 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<Kernel::Range> : public GenericTraits<Kernel::Range> {
static constexpr bool is_trivial() { return true; }
};
}