Overload resolution now works in PHP out of the box.
git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@9305 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
parent
4302d73927
commit
5baafd12c0
6 changed files with 28 additions and 20 deletions
|
|
@ -42,6 +42,10 @@ char *overloaded(double d) {
|
|||
return "Overloaded with double";
|
||||
}
|
||||
|
||||
char *overloaded(const char * str) {
|
||||
return "Overloaded with char *";
|
||||
}
|
||||
|
||||
char *overloaded( const Circle& ) {
|
||||
return "Overloaded with Circle";
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue