Skip to content

Commit 82b83c5

Browse files
committed
Missing namespace
1 parent d3a847d commit 82b83c5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

include/taco/util/strings.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ toString(const T &val) {
3131
template <class T>
3232
typename std::enable_if<std::is_floating_point<T>::value, std::string>::type
3333
toString(const T &val) {
34-
if (isinf(val)) {
34+
if (std::isinf(val)) {
3535
return (val < 0) ? "-INFINITY" : "INFINITY";
3636
}
3737
std::stringstream sstream;

0 commit comments

Comments
 (0)