File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
src/Generator/Generators/CSharp Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change 1
1
using System ;
2
2
using System . Collections . Generic ;
3
+ using System . Globalization ;
4
+ using System . Linq ;
5
+ using System . Text ;
3
6
using CppSharp . AST ;
4
7
using CppSharp . AST . Extensions ;
5
8
using CppSharp . Types ;
6
- using Type = CppSharp . AST . Type ;
7
9
using ParserTargetInfo = CppSharp . Parser . ParserTargetInfo ;
8
- using System . Linq ;
9
- using System . Text ;
10
- using System . Globalization ;
10
+ using Type = CppSharp . AST . Type ;
11
11
12
12
namespace CppSharp . Generators . CSharp
13
13
{
@@ -751,7 +751,7 @@ public override TypePrinterResult VisitFieldDecl(Field field)
751
751
752
752
PushMarshalKind ( MarshalKind . NativeField ) ;
753
753
var fieldTypePrinted = field . QualifiedType . Visit ( this ) ;
754
- PopMarshalKind ( ) ;
754
+ PopMarshalKind ( ) ;
755
755
756
756
var returnTypePrinter = new TypePrinterResult ( ) ;
757
757
if ( ! string . IsNullOrWhiteSpace ( fieldTypePrinted . NameSuffix ) )
You can’t perform that action at this time.
0 commit comments