remove non standard hypotf function call

This commit is contained in:
Gael Guennebaud 2009-01-07 16:24:27 +00:00
parent 94efa16187
commit 8cea5f6b31

View File

@ -94,7 +94,7 @@ inline float ei_log(float x) { return std::log(x); }
inline float ei_sin(float x) { return std::sin(x); }
inline float ei_cos(float x) { return std::cos(x); }
inline float ei_pow(float x, float y) { return std::pow(x, y); }
inline float ei_hypot(float x, float y) { return hypotf(x,y); }
inline float ei_hypot(float x, float y) { return float(hypot(double(x),double(y))); }
template<> inline float ei_random(float a, float b)
{