diff options
| author | Marcelo Matus <mmatus@acms.arizona.edu> | 2004-11-07 23:18:01 +0000 |
|---|---|---|
| committer | Marcelo Matus <mmatus@acms.arizona.edu> | 2004-11-07 23:18:01 +0000 |
| commit | 791f17abe473dd3ced4df5b7d5b8d6a5eff359ec (patch) | |
| tree | 25699037598def3e9382e7495da17666e4caf59e /Examples/python/import | |
| parent | 6cb06db2e301394b1a9c37d66620b8532f965230 (diff) | |
| download | swig-791f17abe473dd3ced4df5b7d5b8d6a5eff359ec.tar.gz | |
fix warnings when using directors
git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@6687 626c5289-ae23-0410-ae9c-e8d60b6d4f22
Diffstat (limited to 'Examples/python/import')
| -rw-r--r-- | Examples/python/import/base.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Examples/python/import/base.h b/Examples/python/import/base.h index be3cdef7d..5a266f68c 100644 --- a/Examples/python/import/base.h +++ b/Examples/python/import/base.h @@ -3,7 +3,7 @@ class Base { public: Base() { }; - ~Base() { }; + virtual ~Base() { }; virtual void A() { printf("I'm Base::A\n"); } |
