Skip to content

Commit

Permalink
Properly wrapped non-virtual destructors in derived types.
Browse files Browse the repository at this point in the history
Signed-off-by: Dimitar Dobrev <[email protected]>
  • Loading branch information
ddobrev committed Dec 21, 2015
1 parent e44a345 commit d5e49cb
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 0 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
0.0.8 - 21.12.2015
Added:
- Properly wrapped non-virtual destructors in derived types.

0.0.7 - 12.12.2015
Added:
- Bindings for QtQuickWidgets and QtMultimediaWidgets.
Expand Down
1 change: 1 addition & 0 deletions QtSharp.CLI/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,7 @@ public static int Main(string[] args)
if (parserResult.Kind == ParserResultKind.Success)
{
dependencies[libFile] = CppSharp.ClangParser.ConvertLibrary(parserResult.Library).Dependencies;
parserResult.Library.Dispose();
}
else
{
Expand Down
1 change: 1 addition & 0 deletions QtSharp/CompileInlinesPass.cs
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ public override bool VisitLibrary(ASTContext library)
var nativeLibrary = CppSharp.ClangParser.ConvertLibrary(parserResult.Library);
this.Driver.Symbols.Libraries.Add(nativeLibrary);
this.Driver.Symbols.IndexSymbols();
parserResult.Library.Dispose();
}
}
return true;
Expand Down

0 comments on commit d5e49cb

Please sign in to comment.