diff --git a/dumux/freeflow/navierstokes/problem.hh b/dumux/freeflow/navierstokes/problem.hh index d0fdad020329dfcce35c82eb237b470db4c8da59..e12b377f5b173f9615479c29a2197ca00d1f925d 100644 --- a/dumux/freeflow/navierstokes/problem.hh +++ b/dumux/freeflow/navierstokes/problem.hh @@ -119,8 +119,8 @@ public: { return gravity_; } //! Applys the initial face solution (velocities on the faces). Specialization for staggered grid discretization. - template <class T = TypeTag> - typename std::enable_if<GET_PROP_TYPE(T, FVGridGeometry)::discMethod == DiscretizationMethod::staggered, void>::type + template <class G = FVGridGeometry> + typename std::enable_if<G::discMethod == DiscretizationMethod::staggered, void>::type applyInititalFaceSolution(SolutionVector& sol, const SubControlVolumeFace& scvf, const PrimaryVariables& initSol) const