Remove unneeded @ prefixes
This commit is contained in:
parent
ad5eb5787c
commit
b3615c6c0d
1 changed files with 9 additions and 9 deletions
|
@ -1891,13 +1891,13 @@ namespace Ryujinx.HLE.HOS.Diagnostics.Demangler
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
BaseNode @from = ParseExpression();
|
BaseNode from = ParseExpression();
|
||||||
if (@from == null)
|
if (from == null)
|
||||||
{
|
{
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
return new CastExpression("const_cast", to, @from);
|
return new CastExpression("const_cast", to, from);
|
||||||
case 'l':
|
case 'l':
|
||||||
_position += 2;
|
_position += 2;
|
||||||
BaseNode callee = ParseExpression();
|
BaseNode callee = ParseExpression();
|
||||||
|
@ -2240,13 +2240,13 @@ namespace Ryujinx.HLE.HOS.Diagnostics.Demangler
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
BaseNode @from = ParseExpression();
|
BaseNode from = ParseExpression();
|
||||||
if (@from == null)
|
if (from == null)
|
||||||
{
|
{
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
return new CastExpression("reinterpret_cast", to, @from);
|
return new CastExpression("reinterpret_cast", to, from);
|
||||||
case 'm':
|
case 'm':
|
||||||
_position += 2;
|
_position += 2;
|
||||||
return ParseBinaryExpression("%");
|
return ParseBinaryExpression("%");
|
||||||
|
@ -2272,13 +2272,13 @@ namespace Ryujinx.HLE.HOS.Diagnostics.Demangler
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
BaseNode @from = ParseExpression();
|
BaseNode from = ParseExpression();
|
||||||
if (@from == null)
|
if (from == null)
|
||||||
{
|
{
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
return new CastExpression("static_cast", to, @from);
|
return new CastExpression("static_cast", to, from);
|
||||||
case 'p':
|
case 'p':
|
||||||
_position += 2;
|
_position += 2;
|
||||||
expression = ParseExpression();
|
expression = ParseExpression();
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue