aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.HLE/HOS/Diagnostics
diff options
context:
space:
mode:
authorgdkchan <gab.dark.100@gmail.com>2023-03-04 10:43:08 -0300
committerGitHub <noreply@github.com>2023-03-04 14:43:08 +0100
commit4f3af839be4134ed63dbd705758714bd0fbba9ef (patch)
tree4c9c0095a4c8efdef540d898ac9e3f143f7b734c /Ryujinx.HLE/HOS/Diagnostics
parent155736c9863ed90c3ffa177266f67a0bdaa63fd1 (diff)
Minor code formatting (#4498)
Diffstat (limited to 'Ryujinx.HLE/HOS/Diagnostics')
-rw-r--r--Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/IntegerLiteral.cs2
-rw-r--r--Ryujinx.HLE/HOS/Diagnostics/Demangler/Demangler.cs4
2 files changed, 3 insertions, 3 deletions
diff --git a/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/IntegerLiteral.cs b/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/IntegerLiteral.cs
index ea048d76..33752d00 100644
--- a/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/IntegerLiteral.cs
+++ b/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/IntegerLiteral.cs
@@ -1,5 +1,5 @@
-using System.IO;
using System;
+using System.IO;
namespace Ryujinx.HLE.HOS.Diagnostics.Demangler.Ast
{
diff --git a/Ryujinx.HLE/HOS/Diagnostics/Demangler/Demangler.cs b/Ryujinx.HLE/HOS/Diagnostics/Demangler/Demangler.cs
index a6618eca..1bfd7ac0 100644
--- a/Ryujinx.HLE/HOS/Diagnostics/Demangler/Demangler.cs
+++ b/Ryujinx.HLE/HOS/Diagnostics/Demangler/Demangler.cs
@@ -1,8 +1,8 @@
-using System;
+using Ryujinx.HLE.HOS.Diagnostics.Demangler.Ast;
+using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
-using Ryujinx.HLE.HOS.Diagnostics.Demangler.Ast;
namespace Ryujinx.HLE.HOS.Diagnostics.Demangler
{