Skip to content
Snippets Groups Projects
Commit 72b46992 authored by Robert Klöfkorn's avatar Robert Klöfkorn
Browse files

bug fix for changed inheritance


git-svn-id: https://dune.mathematik.uni-freiburg.de/svn/alugrid/trunk@1296 0d966ed9-3843-0410-af09-ebfb50bd7c74
parent 070c76f3
No related branches found
No related tags found
No related merge requests found
......@@ -1253,7 +1253,10 @@ inline GitterBasisPll :: ObjectsPll :: Hedge1EmptyPll :: Hedge1EmptyPll (VertexG
}
inline bool GitterBasisPll :: ObjectsPll :: Hedge1EmptyPll :: lockedAgainstCoarsening () const {
return accessPllX ().lockedAgainstCoarsening () ;
// lockedAgainstCoarsening from base class, otherwise cycle
// because accessPllX () returns *this
return EdgePllBaseX :: lockedAgainstCoarsening () ;;
//return accessPllX ().lockedAgainstCoarsening () ;
}
inline GitterBasisPll :: ObjectsPll :: Hface3EmptyPll :: Hface3EmptyPll (myhedge1_t * e0, int s0, myhedge1_t * e1, int s1, myhedge1_t * e2, int s2) :
......
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