add virtual destructors where needed

git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@5873 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
Marcelo Matus 2004-04-11 12:10:44 +00:00
commit f6340798c4
22 changed files with 55 additions and 4 deletions

View file

@ -6,6 +6,10 @@
%inline %{
struct A
{
virtual ~A()
{
}
virtual int foo() = 0;
};