There was an error while loading. Please reload this page.
1 parent d3a847d commit 82b83c5Copy full SHA for 82b83c5
include/taco/util/strings.h
@@ -31,7 +31,7 @@ toString(const T &val) {
31
template <class T>
32
typename std::enable_if<std::is_floating_point<T>::value, std::string>::type
33
toString(const T &val) {
34
- if (isinf(val)) {
+ if (std::isinf(val)) {
35
return (val < 0) ? "-INFINITY" : "INFINITY";
36
}
37
std::stringstream sstream;
0 commit comments