Skip to content
Snippets Groups Projects
Commit 64822c8c authored by Mark OLESEN's avatar Mark OLESEN
Browse files

BUG: bad reference in edgeExtractorCorners.C

- erroneous conversion from LongList to DynList
parent b49685fa
Branches
Tags
No related merge requests found
......@@ -1161,7 +1161,7 @@ bool Foam::Module::edgeExtractor::checkCorners()
// and check whether there exist various disconnected surface
// parts in the vicinity of this group of edge
const DynList<label>& invalidEdges = mIt->second;
const auto& invalidEdges = mIt->second;
forAll(invalidEdges, i)
invalidFeatureEdges.insert(invalidEdges[i]);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment