Fixes to link on Cygwin

git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@5675 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
William S Fulton 2004-01-22 22:43:32 +00:00
commit c24953d678
2 changed files with 5 additions and 7 deletions

View file

@ -29,9 +29,9 @@
{
typedef complex None;
A* clone(int);
A* clone(int) { return NULL; }
virtual ~A();
virtual ~A() {}
virtual int func() = 0;
private:
typedef complex False;
@ -44,9 +44,7 @@
struct B : A
{
B()
{
}
B() {}
};
}