Skip to content
Snippets Groups Projects
Verified Commit deb41a2a authored by Sébastien Villemot's avatar Sébastien Villemot
Browse files

Fix comment in previous commit

parent e7b619c0
Branches
No related tags found
No related merge requests found
......@@ -619,8 +619,8 @@ void
LoadParamsAndSteadyStateStatement::fillEvalContext(eval_context_t &eval_context) const
{
for (const auto & it : content)
/* We use strtod() instead of stod() because we want overflows and
underflows to respectively yield 0 and ±Inf. See also the comment in
/* We use strtod() instead of stod() because we want underflows and
overflows to respectively yield 0 and ±Inf. See also the comment in
NumericalConstants.cc */
eval_context[it.first] = strtod(it.second.c_str(), nullptr);
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment