mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-06 08:10:02 +00:00
Refactor: Replace usages of FixedArray with Vector.
This commit is contained in:
parent
9c83d6ff46
commit
ec1080b18a
Notes:
sideshowbarker
2024-07-19 02:50:02 +09:00
Author: https://github.com/asynts
Commit: ec1080b18a
Pull-request: https://github.com/SerenityOS/serenity/pull/3426
9 changed files with 27 additions and 23 deletions
|
@ -142,7 +142,7 @@ NonnullRefPtrVector<Process> Process::all_processes()
|
|||
|
||||
bool Process::in_group(gid_t gid) const
|
||||
{
|
||||
return m_gid == gid || m_extra_gids.contains(gid);
|
||||
return m_gid == gid || m_extra_gids.contains_slow(gid);
|
||||
}
|
||||
|
||||
Range Process::allocate_range(VirtualAddress vaddr, size_t size, size_t alignment)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue