mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-07-01 01:56:25 +02:00
Migrate to .NET 9 (#198)
This commit is contained in:
parent
8db5a7e98b
commit
ff6628149d
136 changed files with 278 additions and 270 deletions
|
@ -64,7 +64,7 @@ namespace Spv.Generator
|
|||
_operands.Add(value);
|
||||
}
|
||||
|
||||
public void AddOperand(IOperand[] value)
|
||||
public void AddOperand(ReadOnlySpan<IOperand> value)
|
||||
{
|
||||
foreach (IOperand instruction in value)
|
||||
{
|
||||
|
@ -72,7 +72,7 @@ namespace Spv.Generator
|
|||
}
|
||||
}
|
||||
|
||||
public void AddOperand(LiteralInteger[] value)
|
||||
public void AddOperand(ReadOnlySpan<LiteralInteger> value)
|
||||
{
|
||||
foreach (LiteralInteger instruction in value)
|
||||
{
|
||||
|
@ -85,7 +85,7 @@ namespace Spv.Generator
|
|||
AddOperand((IOperand)value);
|
||||
}
|
||||
|
||||
public void AddOperand(Instruction[] value)
|
||||
public void AddOperand(ReadOnlySpan<Instruction> value)
|
||||
{
|
||||
foreach (Instruction instruction in value)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue