diff --git a/marray/marray/blas.h b/marray/marray/blas.h index a20c0a6..91f3032 100644 --- a/marray/marray/blas.h +++ b/marray/marray/blas.h @@ -731,6 +731,11 @@ using value_type = std::remove_cv_t::value_type>; namespace blas { +using std::conj; +inline float conj(float x) { return x; } +inline double conj(double x) { return x; } +inline long double conj(long double x) { return x; } + /****************************************************************************** * * Level 1 BLAS, C++ overloads