Skip to content

Commit

Permalink
fix for github issue #17
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Lampe committed Dec 3, 2018
1 parent 3d0c918 commit 7c5bb1f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ugbase/lib_disc/function_spaces/local_transfer.h
Original file line number Diff line number Diff line change
Expand Up @@ -522,7 +522,7 @@ class CrouzeixRaviartElemTransfer
vParentElem[p] = vElem[p];

// call prolongation
prolongate<TSide>(vParentElem, vChildSide, vValueChild, vValueParent);
this->template prolongate<TSide>(vParentElem, vChildSide, vValueChild, vValueParent);
}

// b) prolongation from a element
Expand All @@ -544,7 +544,7 @@ class CrouzeixRaviartElemTransfer
vParentElem[0] = parent;

// call prolongation
prolongate<TSide>(vParentElem, vChildSide, vValueChild, vValueParent);
this->template prolongate<TSide>(vParentElem, vChildSide, vValueChild, vValueParent);
}
};

Expand Down

0 comments on commit 7c5bb1f

Please sign in to comment.