VC++ warning fix
git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@10031 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
parent
6d796af70d
commit
e1d7790968
1 changed files with 1 additions and 1 deletions
|
|
@ -230,7 +230,7 @@ SWIG_TypeNameComp(const char *f1, const char *l1,
|
|||
while ((*f2 == ' ') && (f2 != l2)) ++f2;
|
||||
if (*f1 != *f2) return (*f1 > *f2) ? 1 : -1;
|
||||
}
|
||||
return (l1 - f1) - (l2 - f2);
|
||||
return (int)((l1 - f1) - (l2 - f2));
|
||||
}
|
||||
|
||||
/*
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue