Fix 2 compiler warnings
git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@9388 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
parent
62949e02e3
commit
1ed6e404f4
1 changed files with 2 additions and 2 deletions
|
|
@ -986,8 +986,8 @@ String * CFFI::convert_literal(String *literal, String *type, bool try_to_split)
|
|||
return NewStringf("\"%s\"", num_param);
|
||||
}
|
||||
else if (SwigType_type(type) == T_INT){
|
||||
Replaceall(num, "u", "") + Replaceall(num, "U", "");
|
||||
Replaceall(num, "l", "") + Replaceall(num, "L", "");
|
||||
Replaceall(num, "u", ""); Replaceall(num, "U", "");
|
||||
Replaceall(num, "l", ""); Replaceall(num, "L", "");
|
||||
|
||||
int i,j;
|
||||
if (sscanf (s,"%d >> %d",&i,&j) == 2){
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue