functionObjects: Rationalized the use of "tab" rather than token::TAB

This commit is contained in:
Henry Weller
2017-09-09 19:03:16 +01:00
parent 7dc61879a6
commit 27ca59be80
7 changed files with 54 additions and 54 deletions

View File

@ -83,13 +83,13 @@ void Foam::functionObjects::residuals::writeResidual(const word& fieldName)
{
if (component(validComponents, cmpt) != -1)
{
file() << token::TAB << component(residual, cmpt);
file() << tab << component(residual, cmpt);
}
}
}
else
{
file() << token::TAB << "N/A";
file() << tab << "N/A";
}
}
}