misc: chore: Use collection expressions in Cpu

This commit is contained in:
Evan Husted 2025-01-26 15:41:05 -06:00
parent ed2590a8ac
commit 3e12865f51
26 changed files with 934 additions and 931 deletions

View file

@ -38,10 +38,10 @@ namespace Ryujinx.Cpu
{
Memory = memory;
Size = size;
_freeRanges = new List<Range>
{
new(0, size),
};
_freeRanges =
[
new(0, size)
];
}
public ulong Allocate(ulong size, ulong alignment)
@ -185,7 +185,7 @@ namespace Ryujinx.Cpu
public PrivateMemoryAllocatorImpl(ulong blockAlignment, MemoryAllocationFlags allocationFlags)
{
_blocks = new List<T>();
_blocks = [];
_blockAlignment = blockAlignment;
_allocationFlags = allocationFlags;
}