Skip to content
Snippets Groups Projects
Commit 8da4b82a authored by Beatrix Becker's avatar Beatrix Becker
Browse files

[tracer] remove TypeTag for indices

parent 87edeef8
No related branches found
No related tags found
1 merge request!838Feature/less typetag in indices
......@@ -33,7 +33,7 @@ namespace Dumux
* \ingroup TracerModel
* \brief Defines the primary variable and equation indices used by the isothermal tracer model.
*/
template <class TypeTag, int PVOffset = 0>
template <int PVOffset = 0>
struct TracerIndices
{
/*!
......
......@@ -107,7 +107,7 @@ SET_TYPE_PROP(Tracer, VolumeVariables, TracerVolumeVariables<TypeTag>);
SET_TYPE_PROP(Tracer, AdvectionType, StationaryVelocityField<typename GET_PROP_TYPE(TypeTag, Scalar)>);
//! Set the indices used by the tracer model
SET_TYPE_PROP(Tracer, Indices, TracerIndices<TypeTag>);
SET_TYPE_PROP(Tracer, Indices, TracerIndices<>);
//! Use FVSpatialParamsOneP by default.
SET_TYPE_PROP(Tracer, SpatialParams, FVSpatialParamsOneP<TypeTag>);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment