WetGasPvt: remove use of sstream
This commit is contained in:
parent
b24bf9d339
commit
38f58a2beb
@ -34,8 +34,6 @@
|
||||
#include <opm/material/common/UniformXTabulated2DFunction.hpp>
|
||||
#include <opm/material/common/Tabulated1DFunction.hpp>
|
||||
|
||||
#include <sstream>
|
||||
|
||||
namespace Opm {
|
||||
|
||||
#if HAVE_ECL_INPUT
|
||||
@ -456,12 +454,12 @@ public:
|
||||
return pSat;
|
||||
}
|
||||
|
||||
std::stringstream errlog;
|
||||
errlog << "Finding saturation pressure did not converge:"
|
||||
<< " pSat = " << pSat
|
||||
<< ", Rv = " << Rv;
|
||||
OpmLog::debug("Wet gas saturation pressure", errlog.str());
|
||||
throw NumericalProblem(errlog.str());
|
||||
const std::string msg =
|
||||
"Finding saturation pressure did not converge: "
|
||||
"pSat = " + std::to_string(getValue(pSat)) +
|
||||
", Rv = " + std::to_string(getValue(Rv));
|
||||
OpmLog::debug("Wet gas saturation pressure", msg);
|
||||
throw NumericalProblem(msg);
|
||||
}
|
||||
|
||||
template <class Evaluation>
|
||||
|
Loading…
Reference in New Issue
Block a user