We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2c6b796 commit 7e1585bCopy full SHA for 7e1585b
numexpr/msvc_function_stubs.hpp
@@ -44,11 +44,13 @@
44
#define hypotf(x, y) ((float)hypot((double)(x), (double)(y)))
45
#define copysignf(x, y) ((float)copysign((double)(x), (double)(y)))
46
#define nextafterf(x, y) ((float)nextafter((double)(x), (double)(y)))
47
+#define fmaxf(x, y) ((float)fmax((double)(x), (double)(y)))
48
+#define fminf(x, y) ((float)fmax((double)(x), (double)(y)))
49
#define ceilf(x) ((float)ceil((double)(x)))
50
#define hypotf(x) ((float)hypot((double)(x)))
51
#define rintf(x) ((float)rint((double)(x)))
52
#define truncf(x) ((float)trunc((double)(x)))
-#define fmaxf(x) ((float)fmax((double)(x)))
53
+
54
55
/* The next are directly called from interp_body.cpp */
56
#define powf(x, y) ((float)pow((double)(x), (double)(y)))
0 commit comments