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 38907d7 commit fbe2dcfCopy full SHA for fbe2dcf
numexpr/msvc_function_stubs.hpp
@@ -216,9 +216,6 @@ inline bool signbitf2(float x) {
216
return signbitf(x);
217
}
218
219
-inline float signf2(float x) {
220
- return signf(x);
221
-}
222
223
224
numexpr/numexpr_config.hpp
@@ -60,5 +60,10 @@ inline bool isnand(double x) { return !!std::isnan(x); }
60
inline bool isinff_(float x) { return !!std::isinf(x); }
61
inline bool isinfd(double x) { return !!std::isinf(x); }
62
#endif
63
-
+#include "bespoke_functions.hpp"
64
+#ifdef _WIN32 //need signf from bespoke_functions
65
+inline float signf2(float x) {
66
+ return signf(x);
67
+}
68
+ #endif
69
#endif // NUMEXPR_CONFIG_HPP
0 commit comments