Skip to content
Snippets Groups Projects
Commit 62f0a694 authored by Ned Coltman's avatar Ned Coltman
Browse files

Merge branch 'fix/remove-warning-facet-coupling-mapper' into 'master'

[facet][boxmapper] avoid uninitialized warning variable

See merge request !2649
parents ef3d80e9 ce67b49b
No related branches found
No related tags found
1 merge request!2649[facet][boxmapper] avoid uninitialized warning variable
......@@ -122,7 +122,7 @@ public:
// find the bulk element facet that lies on this low dim element (assumes conformity!)
bool found = false;
unsigned int coupledFacetIndex;
unsigned int coupledFacetIndex = 0;
std::vector<unsigned int> handledFacets;
for (const auto& is : intersections(bulkFvGridGeometry.gridView(), bulkElement))
{
......
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