Remove unneeded @ prefixes

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

View file

@ -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();