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 11using System ;
22using System . Collections . Generic ;
3+ using System . Globalization ;
4+ using System . Linq ;
5+ using System . Text ;
36using CppSharp . AST ;
47using CppSharp . AST . Extensions ;
58using CppSharp . Types ;
6- using Type = CppSharp . AST . Type ;
79using ParserTargetInfo = CppSharp . Parser . ParserTargetInfo ;
8- using System . Linq ;
9- using System . Text ;
10- using System . Globalization ;
10+ using Type = CppSharp . AST . Type ;
1111
1212namespace 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 ) )
You can’t perform that action at this time.
0 commit comments