Skip to content
Snippets Groups Projects
Commit 7668a682 authored by Jonathan Youett's avatar Jonathan Youett
Browse files

Add missing typedef ctype from base class

parent fbad8e85
No related branches found
No related tags found
No related merge requests found
...@@ -88,6 +88,7 @@ class SubGridLeafIntersection : ...@@ -88,6 +88,7 @@ class SubGridLeafIntersection :
// The type of the actual local geometry implementation // The type of the actual local geometry implementation
typedef SubGridLocalGeometry<dim-1, dimworld, GridImp> LocalGeometryImpl; typedef SubGridLocalGeometry<dim-1, dimworld, GridImp> LocalGeometryImpl;
using ctype = Base::ctype;
using Base::insideIntersect_; using Base::insideIntersect_;
...@@ -203,7 +204,7 @@ public: ...@@ -203,7 +204,7 @@ public:
} }
/*! @brief Return unit outer normal at the center of the intersection geometry */ /*! @brief Return unit outer normal at the center of the intersection geometry */
FieldVector<typename GridImp::ctype, dimworld> centerUnitOuterNormal () const FieldVector<ctype, dimworld> centerUnitOuterNormal () const
{ {
if (neighbor() and (outside_.level() > inside_.level())) { if (neighbor() and (outside_.level() > inside_.level())) {
auto normal = outsideIntersect_.centerUnitOuterNormal(); auto normal = outsideIntersect_.centerUnitOuterNormal();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment