diff --git a/ugbase/lib_disc/function_spaces/local_transfer.h b/ugbase/lib_disc/function_spaces/local_transfer.h index 7550ce201..5826c5b51 100644 --- a/ugbase/lib_disc/function_spaces/local_transfer.h +++ b/ugbase/lib_disc/function_spaces/local_transfer.h @@ -522,7 +522,7 @@ class CrouzeixRaviartElemTransfer vParentElem[p] = vElem[p]; // call prolongation - prolongate(vParentElem, vChildSide, vValueChild, vValueParent); + this->template prolongate(vParentElem, vChildSide, vValueChild, vValueParent); } // b) prolongation from a element @@ -544,7 +544,7 @@ class CrouzeixRaviartElemTransfer vParentElem[0] = parent; // call prolongation - prolongate(vParentElem, vChildSide, vValueChild, vValueParent); + this->template prolongate(vParentElem, vChildSide, vValueChild, vValueParent); } };