Skip to content
Snippets Groups Projects
Commit 83468282 authored by Dr. Felix Tobias Schindler's avatar Dr. Felix Tobias Schindler
Browse files

[spaces.mapper.fv] fix numDofs() for non codim 0 entities

parent 8bad3027
No related branches found
No related tags found
No related merge requests found
......@@ -108,7 +108,12 @@ public:
}
template <int cd, class GridImp, template <int, int, class> class EntityImp>
size_t numDofs(const Entity<cd, EntityType::dimension, GridImp, EntityImp>& entity) const
size_t numDofs(const Entity<cd, EntityType::dimension, GridImp, EntityImp>& /*entity*/) const
{
return 0;
}
size_t numDofs(const EntityType& /*entity*/) const
{
return dimRange;
}
......
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