Skip to content

Commit eff9b07

Browse files
committed
Clean up formatting in CSharpTypePrinter.cs.
1 parent bc4e01b commit eff9b07

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/Generator/Generators/CSharp/CSharpTypePrinter.cs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
using System;
22
using System.Collections.Generic;
3+
using System.Globalization;
4+
using System.Linq;
5+
using System.Text;
36
using CppSharp.AST;
47
using CppSharp.AST.Extensions;
58
using CppSharp.Types;
6-
using Type = CppSharp.AST.Type;
79
using ParserTargetInfo = CppSharp.Parser.ParserTargetInfo;
8-
using System.Linq;
9-
using System.Text;
10-
using System.Globalization;
10+
using Type = CppSharp.AST.Type;
1111

1212
namespace CppSharp.Generators.CSharp
1313
{
@@ -751,7 +751,7 @@ public override TypePrinterResult VisitFieldDecl(Field field)
751751

752752
PushMarshalKind(MarshalKind.NativeField);
753753
var fieldTypePrinted = field.QualifiedType.Visit(this);
754-
PopMarshalKind();
754+
PopMarshalKind();
755755

756756
var returnTypePrinter = new TypePrinterResult();
757757
if (!string.IsNullOrWhiteSpace(fieldTypePrinted.NameSuffix))

0 commit comments

Comments
 (0)