mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-03 14:50:18 +00:00
Kernel: Add implied auto qualifiers in Memory
This commit is contained in:
parent
ae8c7eebbd
commit
1cdace7898
Notes:
sideshowbarker
2024-07-17 21:16:02 +09:00
Author: https://github.com/Hendiadyoin1
Commit: 1cdace7898
Pull-request: https://github.com/SerenityOS/serenity/pull/11468
Reviewed-by: https://github.com/awesomekling
Reviewed-by: https://github.com/bgianfo
5 changed files with 27 additions and 27 deletions
|
@ -186,7 +186,7 @@ void PhysicalZone::dump() const
|
|||
{
|
||||
dbgln("(( {} used, {} available, page_count: {} ))", m_used_chunks, available(), m_page_count);
|
||||
for (size_t i = 0; i <= max_order; ++i) {
|
||||
auto& bucket = m_buckets[i];
|
||||
auto const& bucket = m_buckets[i];
|
||||
dbgln("[{:2} / {:4}] ", i, (size_t)(2u << i));
|
||||
auto entry = bucket.freelist;
|
||||
while (entry != -1) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue