Debug messages removed

git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/branches/gsoc2009-sploving@11868 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
Sylvestre Ledru 2010-02-23 18:02:54 +00:00
commit 84bde93f08
2 changed files with 0 additions and 2 deletions

View file

@ -4,7 +4,6 @@ double sumitems(double *first, int nbRow, int nbCol) {
for (i=0; i<(nbRow*nbCol); i++) {
total+=first[i];
}
printf("plop: %6.2f\n",total);
return total;
}

View file

@ -29,7 +29,6 @@ int sci_sumitems(char *fname,unsigned long fname_len)
sciErr = getMatrixOfDouble(pvApiCtx, piAddr, &iRows, &iCols, &pdblReal);
double plop = sumitems(pdblReal, iRows, iCols);
printf("plop: %6.2f\n",plop);
/*
* Here, it is a scalar but it could be also a matrix... don't assume it
* it will be always 1x1