aboutsummaryrefslogtreecommitdiff
path: root/LAPACKE
diff options
context:
space:
mode:
authorcmoha <mselhwala@hotmail.com>2016-12-06 18:35:51 +0200
committercmoha <mselhwala@hotmail.com>2016-12-06 18:35:51 +0200
commitff429e76a0aed3fcfe980c49f0a64befa7ab287f (patch)
treedb145d6a4b8b817a00eaade19a929c11e8c02e83 /LAPACKE
parente3829c0e2295a44e92dc4ae6ccc25b66c3c851bd (diff)
redundant variables
Diffstat (limited to 'LAPACKE')
-rw-r--r--LAPACKE/example/example_DGELS_rowmajor.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/LAPACKE/example/example_DGELS_rowmajor.c b/LAPACKE/example/example_DGELS_rowmajor.c
index 15040262..fe17c5e2 100644
--- a/LAPACKE/example/example_DGELS_rowmajor.c
+++ b/LAPACKE/example/example_DGELS_rowmajor.c
@@ -69,7 +69,6 @@ int main (int argc, const char * argv[])
double A[5][3] = {1,1,1,2,3,4,3,5,2,4,2,5,5,4,3};
double b[5][2] = {-10,-3,12,14,14,12,16,16,18,16};
lapack_int info,m,n,lda,ldb,nrhs;
- int i,j;
/* Initialization */
m = 5;