Skip to content

Commit

Permalink
Simplify a bit more
Browse files Browse the repository at this point in the history
  • Loading branch information
flomnes committed Dec 13, 2023
1 parent 21df56e commit 59d7d89
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/solver/simulation/solver_utils.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,7 @@ static const std::string updateTimeFilename

static std::ostream& toScientific(std::ostream& os)
{
os << std::scientific;
os << std::setprecision(14);
return os;
return os << std::scientific << std::setprecision(14);
}

namespace Antares::Solver::Simulation
Expand Down

0 comments on commit 59d7d89

Please sign in to comment.