mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-08 11:58:34 +00:00
3615a70cae
This reverts commit 85dbb9559a
.
17 lines
396 B
C#
17 lines
396 B
C#
using System.IO;
|
|
|
|
namespace Ryujinx.HLE.HOS.Diagnostics.Demangler.Ast
|
|
{
|
|
public class NoexceptSpec : ParentNode
|
|
{
|
|
public NoexceptSpec(BaseNode Child) : base(NodeType.NoexceptSpec, Child) { }
|
|
|
|
public override void PrintLeft(TextWriter Writer)
|
|
{
|
|
Writer.Write("noexcept(");
|
|
Child.Print(Writer);
|
|
Writer.Write(")");
|
|
}
|
|
}
|
|
}
|