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:
parent
6f2e0a5ec1
commit
00c70d19f2
1 changed files with 2 additions and 2 deletions
|
|
@ -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);}
|
||||
};
|
||||
}
|
||||
%}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue