1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 01:27:34 +00:00

AK: Resolve clang-tidy readability-qualified-auto warnings

... In files included by Kernel/Process.cpp and Kernel/Thread.cpp
This commit is contained in:
Andrew Kaster 2021-10-31 14:56:10 -06:00 committed by Andreas Kling
parent 64edf17eb2
commit 762b92c650
3 changed files with 4 additions and 4 deletions

View file

@ -405,7 +405,7 @@ private:
auto old_capacity = m_capacity;
Iterator old_iter = begin();
auto new_buckets = kmalloc(size_in_bytes(new_capacity));
auto* new_buckets = kmalloc(size_in_bytes(new_capacity));
if (!new_buckets)
return Error::from_errno(ENOMEM);