From deb41a2a8f0fa627a0977df6addd03ed0808723d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Villemot?= Date: Thu, 11 Jul 2019 18:39:32 +0200 Subject: [PATCH] Fix comment in previous commit --- src/NumericalInitialization.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/NumericalInitialization.cc b/src/NumericalInitialization.cc index e004adc4..f9b496a6 100644 --- a/src/NumericalInitialization.cc +++ b/src/NumericalInitialization.cc @@ -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); }