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:
parent
b8f2bb553a
commit
f6340798c4
22 changed files with 55 additions and 4 deletions
|
|
@ -7,6 +7,7 @@
|
|||
/* Define the class internally, but don't tell SWIG about it */
|
||||
class Foo {
|
||||
public:
|
||||
virtual ~Foo() {}
|
||||
virtual char *blah() {
|
||||
return (char *) "Foo::blah";
|
||||
}
|
||||
|
|
@ -21,6 +22,7 @@ class Foo;
|
|||
|
||||
class Bar : public Foo {
|
||||
public:
|
||||
virtual ~Bar() {}
|
||||
virtual char *blah() {
|
||||
return (char *) "Bar::blah";
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue