We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c801daf commit 598a13fCopy full SHA for 598a13f
src/utils/common/ToString.h
@@ -63,7 +63,7 @@ inline std::string toString(const double& val, std::streamsize accuracy) {
63
std::ostringstream oss;
64
oss.setf(std::ios::fixed, std::ios::floatfield);
65
oss << std::setprecision(accuracy);
66
- oss << t;
+ oss << val;
67
return oss.str();
68
#endif
69
}
0 commit comments