Skip to content
Snippets Groups Projects
Commit e5c3375a authored by Oliver Sander's avatar Oliver Sander Committed by sander@FU-BERLIN.DE
Browse files

minor cleanup

[[Imported from SVN: r8260]]
parent 0857c0dc
No related branches found
No related tags found
No related merge requests found
...@@ -176,8 +176,10 @@ static void higherOrderGFEFunctionAdaptor(Basis& basis, ...@@ -176,8 +176,10 @@ static void higherOrderGFEFunctionAdaptor(Basis& basis,
const typename Basis::LocalFiniteElement& lfe = basis.getLocalFiniteElement(*eIt); const typename Basis::LocalFiniteElement& lfe = basis.getLocalFiniteElement(*eIt);
std::auto_ptr<typename Dune::PQkLocalFiniteElementFactory<double,double,dim,order>::FiniteElementType> fatherLFE typedef typename Dune::PQkLocalFiniteElementFactory<double,double,dim,order>::FiniteElementType FatherFiniteElementType;
= std::auto_ptr<typename Dune::PQkLocalFiniteElementFactory<double,double,dim,order>::FiniteElementType>(Dune::PQkLocalFiniteElementFactory<double,double,dim,order>::create(eIt->father()->type()));
std::auto_ptr<FatherFiniteElementType> fatherLFE
= std::auto_ptr<FatherFiniteElementType>(Dune::PQkLocalFiniteElementFactory<double,double,dim,order>::create(eIt->father()->type()));
// Set up a local gfe function on the father element // Set up a local gfe function on the father element
std::vector<TargetSpace> coefficients = dofMap[idSet.id(*eIt->father())]; std::vector<TargetSpace> coefficients = dofMap[idSet.id(*eIt->father())];
......
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