aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/ParentNode.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/ParentNode.cs')
-rw-r--r--Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/ParentNode.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/ParentNode.cs b/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/ParentNode.cs
index d5da8729..f1c28347 100644
--- a/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/ParentNode.cs
+++ b/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/ParentNode.cs
@@ -2,11 +2,11 @@ namespace Ryujinx.HLE.HOS.Diagnostics.Demangler.Ast
{
public abstract class ParentNode : BaseNode
{
- public BaseNode Child { get; }
+ public BaseNode Child { get; private set; }
- public ParentNode(NodeType type, BaseNode child) : base(type)
+ public ParentNode(NodeType Type, BaseNode Child) : base(Type)
{
- Child = child;
+ this.Child = Child;
}
public override string GetName()