STYLE: consistency updates

This commit is contained in:
Andrew Heather
2016-09-27 15:17:55 +01:00
parent 89d9fd1550
commit 3dbd39146c
242 changed files with 1933 additions and 1933 deletions

View File

@ -107,9 +107,9 @@ bool Foam::functionObjects::systemCall::read(const dictionary& dict)
bool Foam::functionObjects::systemCall::execute()
{
forAll(executeCalls_, callI)
forAll(executeCalls_, calli)
{
Foam::system(executeCalls_[callI]);
Foam::system(executeCalls_[calli]);
}
return true;
@ -118,9 +118,9 @@ bool Foam::functionObjects::systemCall::execute()
bool Foam::functionObjects::systemCall::end()
{
forAll(endCalls_, callI)
forAll(endCalls_, calli)
{
Foam::system(endCalls_[callI]);
Foam::system(endCalls_[calli]);
}
return true;
@ -129,9 +129,9 @@ bool Foam::functionObjects::systemCall::end()
bool Foam::functionObjects::systemCall::write()
{
forAll(writeCalls_, callI)
forAll(writeCalls_, calli)
{
Foam::system(writeCalls_[callI]);
Foam::system(writeCalls_[calli]);
}
return true;