Update for new runtime library approach (no more -runtime -noruntime)

Comment about inline destructors needed for some compilers added


git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@6535 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
William S Fulton 2004-10-27 20:59:55 +00:00
commit 8dced082d4
34 changed files with 109 additions and 336 deletions

View file

@ -3,7 +3,7 @@
class Base {
public:
Base() { };
virtual ~Base();
~Base() { };
virtual void A() {
printf("I'm Base::A\n");
}