fix previous overload +protected member issue, as reported by Colin McDonald

git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@8855 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
Marcelo Matus 2006-02-21 11:09:05 +00:00
commit 60fca08fd8
2 changed files with 3 additions and 2 deletions

View file

@ -171,6 +171,7 @@ long long ll(long long ull) { return ull; }
{
public:
ClassA() {}
int method1( ) {return 0;}
int method1( int arg1 ) {return arg1;}
protected:
int method1( int arg1, int arg2 ) {return arg1 + arg2;}