From 0bcfce3e679084b23494b8622cbce131ae0696f8 Mon Sep 17 00:00:00 2001 From: julie Date: Tue, 23 Feb 2016 05:46:46 +0000 Subject: [PATCH 35/42] Fix lapacke_ilaver - [out] parameters shall be not const --- LAPACKE/include/lapacke.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'LAPACKE/include') 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) -- cgit v1.2.3