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:
parent
fc24b2b57d
commit
7533d61458
1 changed files with 2 additions and 2 deletions
|
@ -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; }
|
||||
};
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue