summaryrefslogtreecommitdiff
path: root/Lib/scilab/scimatrixint.swg
diff options
context:
space:
mode:
authorSimon Marchetto <simon.marchetto@scilab-enterprises.com>2014-09-09 15:05:12 +0200
committerSimon Marchetto <simon.marchetto@scilab-enterprises.com>2014-09-09 15:05:12 +0200
commit99c82bffa573daeff8321aa6f93ffdd3a3b43c3c (patch)
tree361dd6b26286bb795d9ce006e24c39a0442db5f0 /Lib/scilab/scimatrixint.swg
parente107faf5cc2d4b149b34c3a204da0996484f1b5b (diff)
downloadswig-99c82bffa573daeff8321aa6f93ffdd3a3b43c3c.tar.gz
scilab: remove useless SWIG_Scilab_SetOutput() second parameter
Diffstat (limited to 'Lib/scilab/scimatrixint.swg')
-rw-r--r--Lib/scilab/scimatrixint.swg8
1 files changed, 4 insertions, 4 deletions
diff --git a/Lib/scilab/scimatrixint.swg b/Lib/scilab/scimatrixint.swg
index 5b94fea2e..981815e1c 100644
--- a/Lib/scilab/scimatrixint.swg
+++ b/Lib/scilab/scimatrixint.swg
@@ -70,7 +70,7 @@
%typemap(argout, noblock=1, fragment="SWIG_SciDouble_FromIntArrayAndSize") (int **OUT, int *OUT_ROWCOUNT, int *OUT_COLCOUNT)
{
if (SWIG_SciDouble_FromIntArrayAndSize(pvApiCtx, SWIG_Scilab_GetOutputPosition(), *$2, *$3, *$1) == SWIG_OK) {
- SWIG_Scilab_SetOutput(pvApiCtx, SWIG_NbInputArgument(pvApiCtx) + SWIG_Scilab_GetOutputPosition());
+ SWIG_Scilab_SetOutput(pvApiCtx);
}
else {
return SWIG_ERROR;
@@ -102,7 +102,7 @@
%typemap(argout, noblock=1, fragment="SWIG_SciDouble_FromIntArrayAndSize") (int *OUT_ROWCOUNT, int *OUT_COLCOUNT, int **OUT)
{
if (SWIG_SciDouble_FromIntArrayAndSize(pvApiCtx, SWIG_Scilab_GetOutputPosition(), *$1, *$2, *$3) == SWIG_OK) {
- SWIG_Scilab_SetOutput(pvApiCtx, SWIG_NbInputArgument(pvApiCtx) + SWIG_Scilab_GetOutputPosition());
+ SWIG_Scilab_SetOutput(pvApiCtx);
}
else {
return SWIG_ERROR;
@@ -133,7 +133,7 @@
%typemap(argout, noblock=1, fragment="SWIG_SciDouble_FromIntArrayAndSize") (int **OUT, int *OUT_SIZE)
{
if (SWIG_SciDouble_FromIntArrayAndSize(pvApiCtx, SWIG_Scilab_GetOutputPosition(), 1, *$2, *$1) == SWIG_OK) {
- SWIG_Scilab_SetOutput(pvApiCtx, SWIG_NbInputArgument(pvApiCtx) + SWIG_Scilab_GetOutputPosition());
+ SWIG_Scilab_SetOutput(pvApiCtx);
}
else {
return SWIG_ERROR;
@@ -163,7 +163,7 @@
%typemap(argout, noblock=1, fragment="SWIG_SciDouble_FromIntArrayAndSize") (int *OUT_SIZE, int **OUT)
{
if (SWIG_SciDouble_FromIntArrayAndSize(pvApiCtx, SWIG_Scilab_GetOutputPosition(), 1, *$1, *$2) == SWIG_OK) {
- SWIG_Scilab_SetOutput(pvApiCtx, SWIG_NbInputArgument(pvApiCtx) + SWIG_Scilab_GetOutputPosition());
+ SWIG_Scilab_SetOutput(pvApiCtx);
}
else {
return SWIG_ERROR;