Skip to content
Snippets Groups Projects
Commit f39c3788 authored by Timo Koch's avatar Timo Koch
Browse files

[!55] Properly initialize members of LeafIndexSet

Merge branch 'fix/leafindexset-intitializer-list' into 'master'

See merge request [!55]

  [!55]: Noneextensions/dune-foamgrid/merge_requests/55


(cherry picked from commit 26dd3047)

26c6ee2c Properly initialize members of LeafIndexSet
parent 536dd375
No related branches found
No related tags found
1 merge request!56[!55] Properly initialize members of LeafIndexSet
Pipeline #18171 passed
......@@ -207,7 +207,8 @@ class FoamGridLeafIndexSet :
public:
/** \brief Copy constructor */
FoamGridLeafIndexSet(const GridImp& g): grid_(g)
FoamGridLeafIndexSet(const GridImp& g)
: grid_(g), numQuads_(0), numTriangles_(0), numEdges_(0), numVertices_(0)
{}
//! get index of an entity
......
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