Fix initialisation warning.

This commit is contained in:
Atgeirr Flø Rasmussen 2014-02-05 13:05:33 +01:00
parent 5ce1d09370
commit cb99938c62

View File

@ -56,7 +56,7 @@ namespace Opm
const_cast<double*>(sa)
};
call_UMFPACK(&A, rhs, solution);
LinearSolverReport rep = {0};
LinearSolverReport rep = {};
rep.converged = true;
return rep;
}