Skip to content
Snippets Groups Projects
Commit 5d9744da authored by Thomas Witkowski's avatar Thomas Witkowski
Browse files

Fixed compile bug.

parent 7b1208e2
Branches
Tags
No related merge requests found
...@@ -501,10 +501,10 @@ namespace AMDiS { ...@@ -501,10 +501,10 @@ namespace AMDiS {
for (DofContainer::iterator it = allBoundaryDofs.begin(); for (DofContainer::iterator it = allBoundaryDofs.begin();
it != allBoundaryDofs.end(); ++it) it != allBoundaryDofs.end(); ++it)
if (meshDistributor->getDofMap()[feSpace].isRankDof(*it)) if (meshDistributor->getDofMap()[feSpace].isRankDof(**it))
interfaceDofMap[feSpace].insertRankDof(*it); interfaceDofMap[feSpace].insertRankDof(**it);
else else
interfaceDofMap[feSpace].insertNonRankDof(*it); interfaceDofMap[feSpace].insertNonRankDof(**it);
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment