Fixes blas_int(value) cast when blas_int is long long. Originally:
src/blas_internal.hh: In function 'long long int blas::to_blas_int_(int64_t, const char*)':
./include/blas/config.h:13:39: error: expected primary-expression before 'long'
13 | #define blas_int long long /* or int64_t */
The cblas wrappers also had an error respecting int64:
test/cblas_wrappers.cc: In function 'void cblas_rot(int, std::complex<float>*, int, std::complex<float>*, int, float, std::complex<float>)':
test/cblas_wrappers.cc:52:9: error: cannot convert 'int*' to 'const blas_int*' {aka 'const long int*'}
52 | &n,
Fixes blas_int(value) cast when blas_int is long long. Originally:
The cblas wrappers also had an error respecting int64:
Regarding
#define
use, see https://stackoverflow.com/a/638759/1655607