From 7c5bb1f8dafe1fbfbf382421917ed3d273a891bc Mon Sep 17 00:00:00 2001 From: Michael Lampe Date: Mon, 3 Dec 2018 19:49:40 +0100 Subject: [PATCH] fix for github issue #17 --- ugbase/lib_disc/function_spaces/local_transfer.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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); } };