File tree Expand file tree Collapse file tree 3 files changed +6
-0
lines changed Expand file tree Collapse file tree 3 files changed +6
-0
lines changed Original file line number Diff line number Diff line change 1+ 0.0.8 - 21.12.2015
2+ Added:
3+ - Properly wrapped non-virtual destructors in derived types.
4+
150.0.7 - 12.12.2015
26Added:
37- Bindings for QtQuickWidgets and QtMultimediaWidgets.
Original file line number Diff line number Diff line change @@ -90,6 +90,7 @@ public static int Main(string[] args)
9090 if ( parserResult . Kind == ParserResultKind . Success )
9191 {
9292 dependencies [ libFile ] = CppSharp . ClangParser . ConvertLibrary ( parserResult . Library ) . Dependencies ;
93+ parserResult . Library . Dispose ( ) ;
9394 }
9495 else
9596 {
Original file line number Diff line number Diff line change @@ -54,6 +54,7 @@ public override bool VisitLibrary(ASTContext library)
5454 var nativeLibrary = CppSharp . ClangParser . ConvertLibrary ( parserResult . Library ) ;
5555 this . Driver . Symbols . Libraries . Add ( nativeLibrary ) ;
5656 this . Driver . Symbols . IndexSymbols ( ) ;
57+ parserResult . Library . Dispose ( ) ;
5758 }
5859 }
5960 return true ;
You can’t perform that action at this time.
0 commit comments