add a comment to not forget these bugs
git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/branches/gsoc2009-sploving@12304 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
parent
2aa7a9fbc9
commit
d5e7f909fd
1 changed files with 7 additions and 6 deletions
|
|
@ -2544,7 +2544,7 @@
|
|||
return 0;
|
||||
}
|
||||
getVarType(pvApiCtx, piAddrVar, &typearg);
|
||||
$1 = (typearg == sci_matrix) ? 1 : 0;
|
||||
$1 = (typearg == sci_matrix) ? 1 : 0; /* TODO: fix this bug. should be int */
|
||||
}
|
||||
|
||||
%typecheck(SWIG_TYPECHECK_UINT8) unsigned char {
|
||||
|
|
@ -2556,7 +2556,7 @@
|
|||
return 0;
|
||||
}
|
||||
getVarType(pvApiCtx, piAddrVar, &typearg);
|
||||
$1 = (typearg == sci_matrix) ? 1 : 0;
|
||||
$1 = (typearg == sci_matrix) ? 1 : 0; /* TODO: fix this bug. should be int */
|
||||
}
|
||||
|
||||
%typecheck(SWIG_TYPECHECK_INT16) short {
|
||||
|
|
@ -2564,7 +2564,7 @@
|
|||
int typearg;
|
||||
sciErr = getVarAddressFromPosition(pvApiCtx, $input, &piAddrVar);
|
||||
getVarType(pvApiCtx, piAddrVar, &typearg);
|
||||
$1 = (typearg == sci_matrix) ? 1 : 0;
|
||||
$1 = (typearg == sci_matrix) ? 1 : 0; /* TODO: fix this bug. should be int */
|
||||
}
|
||||
|
||||
%typecheck(SWIG_TYPECHECK_UINT16) unsigned short {
|
||||
|
|
@ -2576,7 +2576,7 @@
|
|||
return 0;
|
||||
}
|
||||
getVarType(pvApiCtx, piAddrVar, &typearg);
|
||||
$1 = (typearg == sci_matrix) ? 1 : 0;
|
||||
$1 = (typearg == sci_matrix) ? 1 : 0; /* TODO: fix this bug. should be int */
|
||||
}
|
||||
|
||||
%typecheck(SWIG_TYPECHECK_INT32) int,
|
||||
|
|
@ -2589,7 +2589,7 @@
|
|||
return 0;
|
||||
}
|
||||
getVarType(pvApiCtx, piAddrVar, &typearg);
|
||||
$1 = (typearg == sci_matrix) ? 1 : 0;
|
||||
$1 = (typearg == sci_matrix) ? 1 : 0; /* TODO: fix this bug. should be int */
|
||||
}
|
||||
|
||||
%typecheck(SWIG_TYPECHECK_UINT32) unsigned int,
|
||||
|
|
@ -2602,9 +2602,10 @@
|
|||
return 0;
|
||||
}
|
||||
getVarType(pvApiCtx, piAddrVar, &typearg);
|
||||
$1 = (typearg == sci_matrix) ? 1 : 0;
|
||||
$1 = (typearg == sci_matrix) ? 1 : 0; /* TODO: fix this bug. should be int */
|
||||
}
|
||||
|
||||
/* TODO: add int64 & uint64 for Scilab 6 */
|
||||
|
||||
%typecheck(SWIG_TYPECHECK_DOUBLE) double {
|
||||
int *piAddrVar;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue