Suppressed some unused parameter warnings.
This commit is contained in:
parent
8ad4dd172f
commit
2250d7bb95
@ -781,7 +781,7 @@ struct EclipseWellRate : public EclipseWellReport {
|
|||||||
type,
|
type,
|
||||||
'R',
|
'R',
|
||||||
"SM3/DAY" /* surf. cub. m. per day */ ) { }
|
"SM3/DAY" /* surf. cub. m. per day */ ) { }
|
||||||
virtual double update (const SimulatorTimer& timer,
|
virtual double update (const SimulatorTimer& /*timer*/,
|
||||||
const WellState& wellState) {
|
const WellState& wellState) {
|
||||||
// TODO: Why only positive rates?
|
// TODO: Why only positive rates?
|
||||||
return std::max (0., rate (wellState));
|
return std::max (0., rate (wellState));
|
||||||
@ -843,7 +843,7 @@ struct EclipseWellBhp : public EclipseWellReport {
|
|||||||
"Pascal")
|
"Pascal")
|
||||||
{ }
|
{ }
|
||||||
|
|
||||||
virtual double update (const SimulatorTimer& timer,
|
virtual double update (const SimulatorTimer& /*timer*/,
|
||||||
const WellState& wellState)
|
const WellState& wellState)
|
||||||
{
|
{
|
||||||
return bhp(wellState);
|
return bhp(wellState);
|
||||||
@ -978,7 +978,7 @@ void EclipseWriter::writeInit(const SimulatorTimer &timer,
|
|||||||
|
|
||||||
void EclipseWriter::writeSolution (const SimulatorTimer& timer,
|
void EclipseWriter::writeSolution (const SimulatorTimer& timer,
|
||||||
const SimulatorState& reservoirState,
|
const SimulatorState& reservoirState,
|
||||||
const WellState& wellState) {
|
const WellState& /*wellState*/) {
|
||||||
// start writing to files
|
// start writing to files
|
||||||
EclipseRestart rst (outputDir_,
|
EclipseRestart rst (outputDir_,
|
||||||
baseName_,
|
baseName_,
|
||||||
|
Loading…
Reference in New Issue
Block a user