[PATCH 35/42] Fix lapacke_ilaver - [out] parameters shall be not const
authorjulie <julielangou@users.noreply.github.com>
Tue, 23 Feb 2016 05:46:46 +0000 (05:46 +0000)
committerjulie <julielangou@users.noreply.github.com>
Tue, 23 Feb 2016 05:46:46 +0000 (05:46 +0000)
LAPACKE/include/lapacke.h
LAPACKE/src/lapacke_ilaver.c

index 45cf358..e60d032 100644 (file)
@@ -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)
index bec1d90..f4c8025 100644 (file)
@@ -33,9 +33,9 @@
 
 #include "lapacke_utils.h"
 
-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 )
 {
     /* Call LAPACK function */
     LAPACK_ilaver( vers_major, vers_minor, vers_patch );