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