Skip to content
Snippets Groups Projects
Commit 76023b38 authored by Andrew Heather's avatar Andrew Heather
Browse files

BUG: Corrected coding error

parent 6a3c2c2f
Branches
Tags
No related merge requests found
......@@ -154,7 +154,7 @@ int main(int argc, char *argv[])
{
forAll(pp, i)
{
const label agglomi = pp.start() - mesh.nInternalFaces() + i
const label agglomi = pp.start() - mesh.nInternalFaces() + i;
finalAgglom[patchi][i] = nbrAgglom[agglomi];
}
}
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment