Skip to content
Snippets Groups Projects
Commit b80f48ed authored by Kilian Weishaupt's avatar Kilian Weishaupt Committed by Dennis Gläser
Browse files

[navierstokes][problem] Remove GET_PROP_TYPE macro from a method

parent 526d673f
No related branches found
No related tags found
1 merge request!878Free grid/element/face volvars/fluxvarcache from typetag
...@@ -119,8 +119,8 @@ public: ...@@ -119,8 +119,8 @@ public:
{ return gravity_; } { return gravity_; }
//! Applys the initial face solution (velocities on the faces). Specialization for staggered grid discretization. //! Applys the initial face solution (velocities on the faces). Specialization for staggered grid discretization.
template <class T = TypeTag> template <class G = FVGridGeometry>
typename std::enable_if<GET_PROP_TYPE(T, FVGridGeometry)::discMethod == DiscretizationMethod::staggered, void>::type typename std::enable_if<G::discMethod == DiscretizationMethod::staggered, void>::type
applyInititalFaceSolution(SolutionVector& sol, applyInititalFaceSolution(SolutionVector& sol,
const SubControlVolumeFace& scvf, const SubControlVolumeFace& scvf,
const PrimaryVariables& initSol) const const PrimaryVariables& initSol) const
......
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