This commit is contained in:
jomjol
2020-08-14 20:33:43 +02:00
parent d30e8b29bc
commit 08ab034c7a
2 changed files with 2 additions and 0 deletions

View File

@@ -284,6 +284,7 @@ bool ClassFlowPostProcessing::doFlow(string zwtime)
{
error = "Negative Rate - Returned old value - read value: " + zwvalue;
Value = PreValue;
stream.str("");
stream << std::fixed << std::setprecision(AnzahlNachkomma) << Value;
zwvalue = stream.str();
}
@@ -292,6 +293,7 @@ bool ClassFlowPostProcessing::doFlow(string zwtime)
{
error = "Rate too high - Returned old value - read value: " + zwvalue;
Value = PreValue;
stream.str("");
stream << std::fixed << std::setprecision(AnzahlNachkomma) << Value;
zwvalue = stream.str();
}