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:
@ -211,10 +211,8 @@ void readPoints
|
||||
{
|
||||
hasWarned = true;
|
||||
|
||||
IOWarningInFunction
|
||||
(
|
||||
is
|
||||
) << "Points not in order starting at point " << pointi
|
||||
IOWarningInFunction(is)
|
||||
<< "Points not in order starting at point " << pointi
|
||||
<< endl;
|
||||
}
|
||||
|
||||
|
||||
@ -465,10 +465,8 @@ Foam::conformationSurfaces::conformationSurfaces
|
||||
|
||||
if (unmatchedKeys.size() > 0)
|
||||
{
|
||||
IOWarningInFunction
|
||||
(
|
||||
surfacesDict
|
||||
) << "Not all entries in conformationSurfaces dictionary were used."
|
||||
IOWarningInFunction(surfacesDict)
|
||||
<< "Not all entries in conformationSurfaces dictionary were used."
|
||||
<< " The following entries were not used : "
|
||||
<< unmatchedKeys.sortedToc()
|
||||
<< endl;
|
||||
|
||||
@ -74,10 +74,8 @@ Foam::surfaceFeaturesExtraction::method::New
|
||||
|
||||
if (!cstrIter.found())
|
||||
{
|
||||
FatalIOErrorInFunction
|
||||
(
|
||||
dict
|
||||
) << "Unknown extractionMethod " << methodName << nl << nl
|
||||
FatalIOErrorInFunction(dict)
|
||||
<< "Unknown extractionMethod " << methodName << nl << nl
|
||||
<< "Valid extraction methods:" << nl
|
||||
<< flatOutput(dictionaryConstructorTablePtr_->sortedToc())
|
||||
<< exit(FatalIOError);
|
||||
|
||||
Reference in New Issue
Block a user