mirror of
https://github.com/OPM/opm-simulators.git
synced 2025-02-25 18:55:30 -06:00
[bugfix][StandardWellsDense] remove auto from method parameter list.
This commit is contained in:
@@ -77,6 +77,7 @@ enum WellVariablePositions {
|
|||||||
typedef WellStateFullyImplicitBlackoilDense WellState;
|
typedef WellStateFullyImplicitBlackoilDense WellState;
|
||||||
typedef BlackoilModelParameters ModelParameters;
|
typedef BlackoilModelParameters ModelParameters;
|
||||||
|
|
||||||
|
typedef typename GET_PROP_TYPE(TypeTag, Grid) Grid;
|
||||||
typedef typename GET_PROP_TYPE(TypeTag, FluidSystem) FluidSystem;
|
typedef typename GET_PROP_TYPE(TypeTag, FluidSystem) FluidSystem;
|
||||||
typedef typename GET_PROP_TYPE(TypeTag, ElementContext) ElementContext;
|
typedef typename GET_PROP_TYPE(TypeTag, ElementContext) ElementContext;
|
||||||
typedef typename GET_PROP_TYPE(TypeTag, Indices) BlackoilIndices;
|
typedef typename GET_PROP_TYPE(TypeTag, Indices) BlackoilIndices;
|
||||||
@@ -121,7 +122,7 @@ enum WellVariablePositions {
|
|||||||
const std::vector<double>& pv_arg,
|
const std::vector<double>& pv_arg,
|
||||||
const RateConverterType* rate_converter,
|
const RateConverterType* rate_converter,
|
||||||
long int global_nc,
|
long int global_nc,
|
||||||
const auto& grid);
|
const Grid& grid);
|
||||||
|
|
||||||
|
|
||||||
/// The number of components in the model.
|
/// The number of components in the model.
|
||||||
|
|||||||
@@ -49,7 +49,7 @@ namespace Opm {
|
|||||||
const std::vector<double>& pv_arg,
|
const std::vector<double>& pv_arg,
|
||||||
const RateConverterType* rate_converter,
|
const RateConverterType* rate_converter,
|
||||||
long int global_nc,
|
long int global_nc,
|
||||||
const auto& grid)
|
const Grid& grid)
|
||||||
{
|
{
|
||||||
// has to be set always for the convergence check!
|
// has to be set always for the convergence check!
|
||||||
global_nc_ = global_nc;
|
global_nc_ = global_nc;
|
||||||
|
|||||||
Reference in New Issue
Block a user