You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Value v = "9432.4e-12";
v.toString(); // returns "0" instead of "9.4324e-9"
The Value class currently uses std::stod() to convert strings to double, but it doesn't work with scientific notation. atof() can probably be used (it doesn't provide any error handling, but it isn't needed because when the conversion fails, the result should be 0 which is exactly what atof() does).