Skip to content
Snippets Groups Projects
Commit ab2a7fc2 authored by Praetorius, Simon's avatar Praetorius, Simon
Browse files

add missing constructor argument in entity

parent 1a5c3d5f
Branches
No related tags found
No related merge requests found
Pipeline #4791 passed
......@@ -223,8 +223,8 @@ public:
using Super::Super;
/// \brief Construct the entity from a subentity of a host-entity
EntityBaseGeometry (const GridFunction& gridFunction, const HostElement& hostElement, int i)
: Super(gridFunction, hostElement, i)
EntityBaseGeometry (const GridFunction& gridFunction, const HostElement& hostElement, int i, int order)
: Super(gridFunction, hostElement, i, order)
, hostElement_(hostElement)
, subEntity_(i)
{}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment