Remove unneeded ".this"
This commit is contained in:
parent
77972140a6
commit
267f82bd82
125 changed files with 303 additions and 303 deletions
|
@ -13,12 +13,12 @@ namespace Ryujinx.HLE.HOS.Diagnostics.Demangler.Ast
|
|||
|
||||
public EncodedFunction(BaseNode name, BaseNode Params, BaseNode cv, BaseNode Ref, BaseNode attrs, BaseNode ret) : base(NodeType.NameType)
|
||||
{
|
||||
this._name = name;
|
||||
this._params = Params;
|
||||
this._cv = cv;
|
||||
this._ref = Ref;
|
||||
this._attrs = attrs;
|
||||
this._ret = ret;
|
||||
_name = name;
|
||||
_params = Params;
|
||||
_cv = cv;
|
||||
_ref = Ref;
|
||||
_attrs = attrs;
|
||||
_ret = ret;
|
||||
}
|
||||
|
||||
public override void PrintLeft(TextWriter writer)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue