From f83e52ba3de0a91b744d7df8c48ec581c78af578 Mon Sep 17 00:00:00 2001 From: Kilian Weishaupt <kilian.weishaupt@iws.uni-stuttgart.de> Date: Tue, 16 Nov 2021 10:59:30 +0100 Subject: [PATCH] [fcstaggered][geohelper] Make function static --- dumux/discretization/facecentered/staggered/geometryhelper.hh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dumux/discretization/facecentered/staggered/geometryhelper.hh b/dumux/discretization/facecentered/staggered/geometryhelper.hh index 1875c22568..80bb2433f5 100644 --- a/dumux/discretization/facecentered/staggered/geometryhelper.hh +++ b/dumux/discretization/facecentered/staggered/geometryhelper.hh @@ -147,7 +147,7 @@ public: } //! Returns an element's facet based on the local facet index. - Facet facet(const SmallLocalIndexType localFacetIdx, const Element& element) const + static Facet facet(const SmallLocalIndexType localFacetIdx, const Element& element) { return element.template subEntity <1> (localFacetIdx); } -- GitLab