1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 05:17:35 +00:00

Kernel: Remove some RangeAllocator debug spam.

This commit is contained in:
Andreas Kling 2019-05-18 03:59:16 +02:00
parent cdaf8cd656
commit b33cc7f772

View file

@ -7,7 +7,9 @@
RangeAllocator::RangeAllocator(LinearAddress base, size_t size)
{
m_available_ranges.append({ base, size });
#ifdef VRA_DEBUG
dump();
#endif
}
RangeAllocator::~RangeAllocator()