Bugfix in parallel overset regarding FatalError. Author: Vuko Vukcevic. Merge: Hrvoje Jasak.
This commit is contained in:
commit
32c8ba2f7d
1 changed files with 1 additions and 1 deletions
|
@ -846,7 +846,7 @@ bool Foam::overlapFringe::updateIteration
|
|||
}
|
||||
}
|
||||
|
||||
if (newAcceptors.empty())
|
||||
if (returnReduce(newAcceptors.empty(), andOp<bool>()))
|
||||
{
|
||||
FatalErrorIn("overlapFringe::updateIteration()")
|
||||
<< "Did not find any new candidate acceptors."
|
||||
|
|
Reference in a new issue