From 791f17abe473dd3ced4df5b7d5b8d6a5eff359ec Mon Sep 17 00:00:00 2001 From: Marcelo Matus Date: Sun, 7 Nov 2004 23:18:01 +0000 Subject: [PATCH] fix warnings when using directors git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@6687 626c5289-ae23-0410-ae9c-e8d60b6d4f22 --- Examples/python/import/base.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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"); }