mirror of
https://gitlab.com/libeigen/eigen.git
synced 2025-08-13 20:26:03 +08:00
Added missing using std::sqrt.
This commit is contained in:
parent
718535ac6c
commit
57e50789f3
@ -338,6 +338,7 @@ struct hypot_impl
|
|||||||
using std::max;
|
using std::max;
|
||||||
using std::min;
|
using std::min;
|
||||||
using std::abs;
|
using std::abs;
|
||||||
|
using std::sqrt;
|
||||||
RealScalar _x = abs(x);
|
RealScalar _x = abs(x);
|
||||||
RealScalar _y = abs(y);
|
RealScalar _y = abs(y);
|
||||||
RealScalar p = (max)(_x, _y);
|
RealScalar p = (max)(_x, _y);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user