diff options
author | julie <julielangou@users.noreply.github.com> | 2016-02-26 06:05:04 +0000 |
---|---|---|
committer | julie <julielangou@users.noreply.github.com> | 2016-02-26 06:05:04 +0000 |
commit | e1a0877f47620ab1e34eb2e2f7d1d0ef42c42c1d (patch) | |
tree | f603ff9e76dd6b832abec24f635defe5bc1a4d44 /LAPACKE/include | |
parent | 2900a3d1c1b6d4c1e9ed33f3ce26a3ec705b61e5 (diff) | |
download | lapack-e1a0877f47620ab1e34eb2e2f7d1d0ef42c42c1d.tar.gz lapack-e1a0877f47620ab1e34eb2e2f7d1d0ef42c42c1d.tar.bz2 lapack-e1a0877f47620ab1e34eb2e2f7d1d0ef42c42c1d.zip |
remove extra comma
Diffstat (limited to 'LAPACKE/include')
-rw-r--r-- | LAPACKE/include/lapacke.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/LAPACKE/include/lapacke.h b/LAPACKE/include/lapacke.h index 84a1f47c..7f91eb56 100644 --- a/LAPACKE/include/lapacke.h +++ b/LAPACKE/include/lapacke.h @@ -17084,7 +17084,7 @@ void LAPACK_csyconv( char* uplo, char* way, lapack_int* lda, const lapack_int* ipiv, lapack_complex_float* e , lapack_int *info ); void LAPACK_csyswapr( char* uplo, lapack_int* n, - lapack_complex_float* a, , lapack_int lda, + lapack_complex_float* a, lapack_int lda, lapack_int* i1, lapack_int* i2 ); void LAPACK_csytri2( char* uplo, lapack_int* n, lapack_complex_float* a, lapack_int* lda, @@ -17177,7 +17177,7 @@ void LAPACK_dorcsd2by1( char* jobu1, char* jobu2, void LAPACK_dsyconv( char* uplo, char* way, lapack_int* n, double* a, lapack_int* lda, const lapack_int* ipiv, double* e , lapack_int *info ); -void LAPACK_dsyswapr( char* uplo, lapack_int* n, , lapack_int lda, +void LAPACK_dsyswapr( char* uplo, lapack_int* n, lapack_int lda, double* a, lapack_int* i1, lapack_int* i2 ); void LAPACK_dsytri2( char* uplo, lapack_int* n, double* a, lapack_int* lda, |