64 bit portability warnings fix

git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@9580 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
William S Fulton 2006-11-24 22:41:17 +00:00
commit c5a8c80883
4 changed files with 11 additions and 10 deletions

View file

@ -21,6 +21,7 @@ struct Base {
Base(int v = 0) : value(v) {}
int value;
virtual int method(int v) {
return v;
}
};
struct Derived : Base {