Skip to content

Commit

Permalink
patchkernel: fix initialization of ReferenceElementInfo::edgeConnectS…
Browse files Browse the repository at this point in the history
…torage
  • Loading branch information
andrea-iob authored and marcocisternino committed Sep 7, 2022
1 parent 95bc1a6 commit ba67a4a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/patchkernel/element_reference.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ ReferenceElementInfo::ReferenceElementInfo(int _dimension, ElementType _type, in
}

edgeTypeStorage.fill(ElementType::UNDEFINED);
for (int i = 0; i < MAX_ELEM_FACES; ++i) {
for (int i = 0; i < MAX_ELEM_EDGES; ++i) {
edgeConnectStorage[i].fill(-1);
}
}
Expand Down

0 comments on commit ba67a4a

Please sign in to comment.