Fix comment in previous commit

issue#70
Sébastien Villemot 2019-07-11 18:39:32 +02:00
parent e7b619c0ef
commit deb41a2a8f
No known key found for this signature in database
GPG Key ID: 2CECE9350ECEBE4A
1 changed files with 2 additions and 2 deletions

View File

@ -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);
}