fixed isfinite -> std::isfinite

This commit is contained in:
matlabbe
2020-05-27 16:39:50 -04:00
parent 511be5f663
commit 8842d0c0e3
+1 -1
View File
@@ -57,7 +57,7 @@ inline bool uIsFinite(const T & value)
#if _MSC_VER
return _finite(value) != 0;
#else
return isfinite(value);
return std::isfinite(value);
#endif
}