various fixes to remove warnings

git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@6580 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
William S Fulton 2004-11-01 21:10:06 +00:00
commit dc12af75b6
21 changed files with 41 additions and 28 deletions

View file

@ -4,7 +4,7 @@
class Foo {
protected:
int x;
int blah(int x) { return x; }
int blah(int xx) { return xx; }
};
class FooBar : public Foo {