Remove unneeded @ prefixes

This commit is contained in:
Alex Barney 2018-12-01 14:41:43 -06:00
parent ad5eb5787c
commit b3615c6c0d

View file

@ -1891,13 +1891,13 @@ namespace Ryujinx.HLE.HOS.Diagnostics.Demangler
return null;
}
BaseNode @from = ParseExpression();
if (@from == null)
BaseNode from = ParseExpression();
if (from == null)
{
return null;
}
return new CastExpression("const_cast", to, @from);
return new CastExpression("const_cast", to, from);
case 'l':
_position += 2;
BaseNode callee = ParseExpression();
@ -2240,13 +2240,13 @@ namespace Ryujinx.HLE.HOS.Diagnostics.Demangler
return null;
}
BaseNode @from = ParseExpression();
if (@from == null)
BaseNode from = ParseExpression();
if (from == null)
{
return null;
}
return new CastExpression("reinterpret_cast", to, @from);
return new CastExpression("reinterpret_cast", to, from);
case 'm':
_position += 2;
return ParseBinaryExpression("%");
@ -2272,13 +2272,13 @@ namespace Ryujinx.HLE.HOS.Diagnostics.Demangler
return null;
}
BaseNode @from = ParseExpression();
if (@from == null)
BaseNode from = ParseExpression();
if (from == null)
{
return null;
}
return new CastExpression("static_cast", to, @from);
return new CastExpression("static_cast", to, from);
case 'p':
_position += 2;
expression = ParseExpression();