mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
STYLE: indentation for FatalIOErrorInFunction calls
This commit is contained in:
@ -59,10 +59,8 @@ void Foam::hierarchGeomDecomp::setDecompOrder()
|
||||
{
|
||||
if (order.size() != 3)
|
||||
{
|
||||
FatalIOErrorInFunction
|
||||
(
|
||||
decompositionDict_
|
||||
) << "number of characters in order (" << order << ") != 3"
|
||||
FatalIOErrorInFunction(decompositionDict_)
|
||||
<< "number of characters in order (" << order << ") != 3"
|
||||
<< exit(FatalIOError);
|
||||
}
|
||||
|
||||
@ -77,10 +75,8 @@ void Foam::hierarchGeomDecomp::setDecompOrder()
|
||||
case 'z': decompOrder_[i] = 2; break;
|
||||
|
||||
default:
|
||||
FatalIOErrorInFunction
|
||||
(
|
||||
decompositionDict_
|
||||
) << "Illegal decomposition order " << order << nl
|
||||
FatalIOErrorInFunction(decompositionDict_)
|
||||
<< "Illegal decomposition order " << order << nl
|
||||
<< "It should only contain x, y or z"
|
||||
<< exit(FatalError);
|
||||
break;
|
||||
|
||||
Reference in New Issue
Block a user