Skip to content

Commit 692f462

Browse files
authored
Merge pull request psi4#1046 from elvis2299/tag_psi_api_dgemv_fnocc_blas_dot_cc
Adds PSI_API tag before the definition of F_DGEMV in ../fnocc/blas.cc
2 parents edb251f + d5baa69 commit 692f462

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

psi4/src/psi4/fnocc/blas.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ long int Position(long int i,long int j){
4444
/**
4545
* fortran-ordered dgemv
4646
*/
47-
void F_DGEMV(char trans,integer m,integer n,doublereal alpha,doublereal*A,integer lda,
47+
void PSI_API F_DGEMV(char trans,integer m,integer n,doublereal alpha,doublereal*A,integer lda,
4848
doublereal*X,integer incx,doublereal beta,doublereal*Y,integer incy){
4949
DGEMV(trans,m,n,alpha,A,lda,X,incx,beta,Y,incy);
5050
}

0 commit comments

Comments
 (0)