removed printfs which shouldn't be there

git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@6794 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
William S Fulton 2004-11-30 20:07:53 +00:00
commit 00c70d19f2

View file

@ -24,10 +24,10 @@ namespace EnumDirector {
virtual Hello say_hi(Hello h){ return h;}
virtual Hello say_hello(Hello){ return hello;}
virtual Hello say_hi(A *a){ return hi;}
virtual const Hello & say_hi_ref(const Hello & h){ printf("Foo:say_hi_ref %d\n", h); return h;}
virtual const Hello & say_hi_ref(const Hello & h){ return h;}
Hello ping(Hello h){ return say_hi(h);}
const Hello & ping_ref(const Hello &h){ printf("Foo::ping_ref %d\n", h); return say_hi_ref(h);}
const Hello & ping_ref(const Hello &h){ return say_hi_ref(h);}
};
}
%}