aboutsummaryrefslogtreecommitdiffhomepage
path: root/bench/btl/libs/C_BLAS/blas.h
diff options
context:
space:
mode:
Diffstat (limited to 'bench/btl/libs/C_BLAS/blas.h')
-rw-r--r--bench/btl/libs/C_BLAS/blas.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/bench/btl/libs/C_BLAS/blas.h b/bench/btl/libs/C_BLAS/blas.h
index 07cd9efd2..ab3d44052 100644
--- a/bench/btl/libs/C_BLAS/blas.h
+++ b/bench/btl/libs/C_BLAS/blas.h
@@ -38,10 +38,10 @@ void BLASFUNC(zdotc) (double *, int *, double *, int *, double *, int *);
void BLASFUNC(xdotu) (double *, int *, double *, int *, double *, int *);
void BLASFUNC(xdotc) (double *, int *, double *, int *, double *, int *);
#else
-float BLASFUNC(cdotu) (int *, float *, int *, float *, int *);
-float BLASFUNC(cdotc) (int *, float *, int *, float *, int *);
-double BLASFUNC(zdotu) (int *, double *, int *, double *, int *);
-double BLASFUNC(zdotc) (int *, double *, int *, double *, int *);
+std::complex<float> BLASFUNC(cdotu) (int *, float *, int *, float *, int *);
+std::complex<float> BLASFUNC(cdotc) (int *, float *, int *, float *, int *);
+std::complex<double> BLASFUNC(zdotu) (int *, double *, int *, double *, int *);
+std::complex<double> BLASFUNC(zdotc) (int *, double *, int *, double *, int *);
double BLASFUNC(xdotu) (int *, double *, int *, double *, int *);
double BLASFUNC(xdotc) (int *, double *, int *, double *, int *);
#endif