Apply coding style recommendations:

- space between keyword and bracket in 'for(..)', 'if(..)', 'while(..)'
This commit is contained in:
Mark Olesen
2009-11-30 08:55:03 +01:00
parent 6bdb7fb7b5
commit 909e6b27e4
148 changed files with 343 additions and 342 deletions

View File

@ -314,7 +314,7 @@ static void storeScalarField
Info<< "Storing " << nTotPoints << " of dummy values of " << fieldName
<< endl;
for(label i = 0; i < nPoints; i++)
for (label i = 0; i < nPoints; i++)
{
vars[pointI++] = 0.0;
}
@ -388,7 +388,7 @@ static void storeVectorField
for (direction d = 0; d < vector::nComponents; d++)
{
for(label i = 0; i < nPoints; i++)
for (label i = 0; i < nPoints; i++)
{
vars[pointI++] = 0.0;
}