mirror of
https://github.com/Ryubing/Ryujinx.git
synced 2025-11-21 18:20:52 -05:00
misc: chore: Use explicit types in Generator projects
This commit is contained in:
@@ -239,8 +239,8 @@ namespace Spv.Generator
|
||||
|
||||
public override string ToString()
|
||||
{
|
||||
var labels = _operandLabels.TryGetValue(Opcode, out var opLabels) ? opLabels : Array.Empty<string>();
|
||||
var result = _resultType == null ? string.Empty : $"{_resultType} ";
|
||||
string[] labels = _operandLabels.TryGetValue(Opcode, out string[] opLabels) ? opLabels : Array.Empty<string>();
|
||||
string result = _resultType == null ? string.Empty : $"{_resultType} ";
|
||||
return $"{result}{Opcode}{_operands.ToString(labels)}";
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user