Skip to content

Commit 598a13f

Browse files
committed
fixing build #3
1 parent c801daf commit 598a13f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/utils/common/ToString.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ inline std::string toString(const double& val, std::streamsize accuracy) {
6363
std::ostringstream oss;
6464
oss.setf(std::ios::fixed, std::ios::floatfield);
6565
oss << std::setprecision(accuracy);
66-
oss << t;
66+
oss << val;
6767
return oss.str();
6868
#endif
6969
}

0 commit comments

Comments
 (0)