aboutsummaryrefslogtreecommitdiff
path: root/LAPACKE/include
diff options
context:
space:
mode:
authorjulie <julielangou@users.noreply.github.com>2016-02-23 05:46:46 +0000
committerjulie <julielangou@users.noreply.github.com>2016-02-23 05:46:46 +0000
commit0bcfce3e679084b23494b8622cbce131ae0696f8 (patch)
tree32cbd0e9df8b9164d75803cb4e56af3fb00d71ff /LAPACKE/include
parentc466d1e6d38afc2bc3a960faf3cdd270fd302a55 (diff)
[PATCH 35/42] Fix lapacke_ilaver - [out] parameters shall be not const
Diffstat (limited to 'LAPACKE/include')
-rw-r--r--LAPACKE/include/lapacke.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/LAPACKE/include/lapacke.h b/LAPACKE/include/lapacke.h
index 45cf3584..e60d0324 100644
--- a/LAPACKE/include/lapacke.h
+++ b/LAPACKE/include/lapacke.h
@@ -11417,9 +11417,9 @@ lapack_int LAPACKE_zsyr_work( int matrix_layout, char uplo, lapack_int n,
const lapack_complex_double* x,
lapack_int incx, lapack_complex_double* a,
lapack_int lda );
-void LAPACKE_ilaver( const lapack_int* vers_major,
- const lapack_int* vers_minor,
- const lapack_int* vers_patch );
+void LAPACKE_ilaver( lapack_int* vers_major,
+ lapack_int* vers_minor,
+ lapack_int* vers_patch );
#define LAPACK_sgetrf LAPACK_GLOBAL(sgetrf,SGETRF)