remove debug printout

git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@8711 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
William S Fulton 2006-02-04 17:37:09 +00:00
parent a52b26adc5
commit 0ca1fd0667
1 changed files with 1 additions and 3 deletions

View File

@ -9,9 +9,7 @@ class Foo {
public:
int a;
Foo(int x, int y) { }
~Foo() {
printf("Destroying foo\n");
}
~Foo() {}
};
Foo create(int x, int y) {