mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 01:37:35 +00:00
UserspaceEmulator: Add some implied auto qualifiers
This commit is contained in:
parent
bf714efa41
commit
15daae468b
5 changed files with 10 additions and 10 deletions
|
@ -28,7 +28,7 @@ void RangeAllocator::initialize_with_range(VirtualAddress base, size_t size)
|
|||
void RangeAllocator::dump() const
|
||||
{
|
||||
dbgln("RangeAllocator({})", this);
|
||||
for (auto& range : m_available_ranges) {
|
||||
for (auto const& range : m_available_ranges) {
|
||||
dbgln(" {:x} -> {:x}", range.base().get(), range.end().get() - 1);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue