File tree 3 files changed +6
-0
lines changed
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
+
1
5
0.0.7 - 12.12.2015
2
6
Added:
3
7
- 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)
90
90
if ( parserResult . Kind == ParserResultKind . Success )
91
91
{
92
92
dependencies [ libFile ] = CppSharp . ClangParser . ConvertLibrary ( parserResult . Library ) . Dependencies ;
93
+ parserResult . Library . Dispose ( ) ;
93
94
}
94
95
else
95
96
{
Original file line number Diff line number Diff line change @@ -54,6 +54,7 @@ public override bool VisitLibrary(ASTContext library)
54
54
var nativeLibrary = CppSharp . ClangParser . ConvertLibrary ( parserResult . Library ) ;
55
55
this . Driver . Symbols . Libraries . Add ( nativeLibrary ) ;
56
56
this . Driver . Symbols . IndexSymbols ( ) ;
57
+ parserResult . Library . Dispose ( ) ;
57
58
}
58
59
}
59
60
return true ;
You can’t perform that action at this time.
0 commit comments