mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
STYLE: use forAllIter, forAllConstIter instead of long-hand version
STYLE: use 'forAll(' NOT 'forAll (', as per coding guide
This commit is contained in:
@ -76,7 +76,7 @@ void Foam::inverseFaceDistanceDiffusivity::correct()
|
||||
|
||||
label nPatchFaces = 0;
|
||||
|
||||
forAll (patchNames_, i)
|
||||
forAll(patchNames_, i)
|
||||
{
|
||||
label pID = bdry.findPatchID(patchNames_[i]);
|
||||
|
||||
|
||||
@ -76,7 +76,7 @@ void Foam::inversePointDistanceDiffusivity::correct()
|
||||
|
||||
label nPatchEdges = 0;
|
||||
|
||||
forAll (patchNames_, i)
|
||||
forAll(patchNames_, i)
|
||||
{
|
||||
label pID = bdry.findPatchID(patchNames_[i]);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user