Skip to content

Commit ca40397

Browse files
authored
Merge pull request #760 from ACSimon33/windows_build_fix
Windows build fix
2 parents 7866626 + 273d758 commit ca40397

File tree

6 files changed

+14
-14
lines changed

6 files changed

+14
-14
lines changed

LAPACKE/utils/lapacke_ctz_trans.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ void LAPACKE_ctz_trans( int matrix_layout, char direct, char uplo,
147147
}
148148

149149
/* Copy & transpose triangular part */
150-
return LAPACKE_ctr_trans( matrix_layout, uplo, diag, tri_n,
151-
&in[tri_in_offset], ldin,
152-
&out[tri_out_offset], ldout );
150+
LAPACKE_ctr_trans( matrix_layout, uplo, diag, tri_n,
151+
&in[tri_in_offset], ldin,
152+
&out[tri_out_offset], ldout );
153153
}

LAPACKE/utils/lapacke_dtz_trans.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ void LAPACKE_dtz_trans( int matrix_layout, char direct, char uplo,
147147
}
148148

149149
/* Copy & transpose triangular part */
150-
return LAPACKE_dtr_trans( matrix_layout, uplo, diag, tri_n,
151-
&in[tri_in_offset], ldin,
152-
&out[tri_out_offset], ldout );
150+
LAPACKE_dtr_trans( matrix_layout, uplo, diag, tri_n,
151+
&in[tri_in_offset], ldin,
152+
&out[tri_out_offset], ldout );
153153
}

LAPACKE/utils/lapacke_stz_trans.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ void LAPACKE_stz_trans( int matrix_layout, char direct, char uplo,
147147
}
148148

149149
/* Copy & transpose triangular part */
150-
return LAPACKE_str_trans( matrix_layout, uplo, diag, tri_n,
151-
&in[tri_in_offset], ldin,
152-
&out[tri_out_offset], ldout );
150+
LAPACKE_str_trans( matrix_layout, uplo, diag, tri_n,
151+
&in[tri_in_offset], ldin,
152+
&out[tri_out_offset], ldout );
153153
}

LAPACKE/utils/lapacke_ztz_trans.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ void LAPACKE_ztz_trans( int matrix_layout, char direct, char uplo,
147147
}
148148

149149
/* Copy & transpose triangular part */
150-
return LAPACKE_ztr_trans( matrix_layout, uplo, diag, tri_n,
151-
&in[tri_in_offset], ldin,
152-
&out[tri_out_offset], ldout );
150+
LAPACKE_ztr_trans( matrix_layout, uplo, diag, tri_n,
151+
&in[tri_in_offset], ldin,
152+
&out[tri_out_offset], ldout );
153153
}

TESTING/EIG/derred.f

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ SUBROUTINE DERRED( PATH, NUNIT )
9999
* ..
100100
* .. External Subroutines ..
101101
EXTERNAL CHKXER, DGEES, DGEESX, DGEEV, DGEEVX, DGEJSV,
102-
$ DGESDD, DGESVD, DGESVDX, DGESVQ
102+
$ DGESDD, DGESVD, DGESVDX, DGESVDQ
103103
* ..
104104
* .. External Functions ..
105105
LOGICAL DSLECT, LSAMEN

TESTING/EIG/zerred.f

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ SUBROUTINE ZERRED( PATH, NUNIT )
100100
* ..
101101
* .. External Subroutines ..
102102
EXTERNAL CHKXER, ZGEES, ZGEESX, ZGEEV, ZGEEVX, ZGESVJ,
103-
$ ZGESDD, ZGESVD, ZGESVDX, ZGESVQ
103+
$ ZGESDD, ZGESVD, ZGESVDX, ZGESVDQ
104104
* ..
105105
* .. External Functions ..
106106
LOGICAL LSAMEN, ZSLECT

0 commit comments

Comments
 (0)