mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
Apply coding style recommendations:
- space between keyword and bracket in 'for(..)', 'if(..)', 'while(..)'
This commit is contained in:
@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user