redundant variables
authorcmoha <mselhwala@hotmail.com>
Tue, 6 Dec 2016 16:35:51 +0000 (18:35 +0200)
committercmoha <mselhwala@hotmail.com>
Tue, 6 Dec 2016 16:35:51 +0000 (18:35 +0200)
LAPACKE/example/example_DGELS_rowmajor.c

index 1504026..fe17c5e 100644 (file)
@@ -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;