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:
@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user