mirror of
https://gitlab.com/libeigen/eigen.git
synced 2026-04-10 11:34:33 +08:00
Enable and fix -Wdouble-conversion warnings
This commit is contained in:
@@ -19,4 +19,4 @@
|
||||
#include "level3_impl.h"
|
||||
|
||||
float BLASFUNC(sdsdot)(int* n, float* alpha, float* x, int* incx, float* y, int* incy)
|
||||
{ return *alpha + BLASFUNC(dsdot)(n, x, incx, y, incy); }
|
||||
{ return double(*alpha) + BLASFUNC(dsdot)(n, x, incx, y, incy); }
|
||||
|
||||
Reference in New Issue
Block a user