Warning removal: const on return types not needed.

This commit is contained in:
Atgeirr Flø Rasmussen 2014-05-21 19:49:29 +02:00
parent 4734052d86
commit cb327ce63a

View File

@ -272,9 +272,9 @@ namespace Opm {
/// residual mass balance (tol_cnv).
bool getConvergence(const double dt);
const double dpMaxRel() const { return dp_max_rel_; }
const double dsMax() const { return ds_max_; }
const double drsMaxRel() const { return drs_max_rel_; }
double dpMaxRel() const { return dp_max_rel_; }
double dsMax() const { return ds_max_; }
double drsMaxRel() const { return drs_max_rel_; }
};
} // namespace Opm