mirror of
https://github.com/OPM/opm-simulators.git
synced 2025-02-25 18:55:30 -06:00
Fixes uninitialized variable warning with gcc-12
This commit is contained in:
parent
1a222158c1
commit
87c4471f96
@ -2337,7 +2337,7 @@ namespace Opm
|
||||
{
|
||||
const int max_iter = this->param_.max_inner_iter_wells_;
|
||||
int it = 0;
|
||||
bool converged;
|
||||
bool converged = false;
|
||||
bool relax_convergence = false;
|
||||
this->regularize_ = false;
|
||||
const auto& summary_state = simulator.vanguard().summaryState();
|
||||
|
Loading…
Reference in New Issue
Block a user