STYLE: indentation for FatalIOErrorInFunction calls

This commit is contained in:
Mark Olesen
2018-11-06 09:49:22 +01:00
parent 2fc1a1692b
commit a7a346b206
111 changed files with 415 additions and 813 deletions

View File

@ -487,18 +487,14 @@ Foam::string Foam::stringOps::getVariable
{
if (allowEnvVars)
{
FatalIOErrorInFunction
(
dict
) << "Cannot find dictionary or environment variable "
FatalIOErrorInFunction(dict)
<< "Cannot find dictionary or environment variable "
<< name << exit(FatalIOError);
}
else
{
FatalIOErrorInFunction
(
dict
) << "Cannot find dictionary variable "
FatalIOErrorInFunction(dict)
<< "Cannot find dictionary variable "
<< name << exit(FatalIOError);
}
}