From 2fab08f3ed45503ed2739e4a508cc56c591a0e1f Mon Sep 17 00:00:00 2001 From: Kilian Weishaupt <kilian.weishaupt@iws.uni-stuttgart.de> Date: Mon, 27 Aug 2018 17:29:52 +0200 Subject: [PATCH] [staggered][fvElementGeometry] Make ParentType method scvf(globalIdx) available --- dumux/discretization/staggered/fvelementgeometry.hh | 1 + 1 file changed, 1 insertion(+) diff --git a/dumux/discretization/staggered/fvelementgeometry.hh b/dumux/discretization/staggered/fvelementgeometry.hh index 1b98bcc29d..75d83d8ce3 100644 --- a/dumux/discretization/staggered/fvelementgeometry.hh +++ b/dumux/discretization/staggered/fvelementgeometry.hh @@ -66,6 +66,7 @@ public: : ParentType(fvGridGeometry.actualfvGridGeometry()) {} //! Get a sub control volume face with an element index and a local scvf index + using ParentType::scvf; const SubControlVolumeFace& scvf(IndexType eIdx, IndexType localScvfIdx) const { return this->fvGridGeometry().scvf(eIdx, localScvfIdx); -- GitLab