mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-01-04 15:45:25 +00:00
Refactor: Replace usages of FixedArray with Vector.
This commit is contained in:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user