Skip to content
Snippets Groups Projects
Commit 378dfd89 authored by Steffen Müthing's avatar Steffen Müthing
Browse files

Merge branch 'bugfix/hasDOFs-pk1d' into 'master'

Bugfix: fix hasDOFs method in 'finiteelementmap/pk1dbasis.hh'

See commit dda8845e... which has introduced this new interface method.

See merge request !89
parents a66bd577 236136c1
No related branches found
No related tags found
No related merge requests found
......@@ -207,10 +207,11 @@ namespace Dune {
switch (codim)
{
case 0:
return k != 1;
return _k != 1;
case 1:
return k > 0;
return _k > 0;
}
return false;
}
std::size_t size(GeometryType gt) const
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment