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:
@ -67,7 +67,7 @@ void Foam::meshToMesh::interpolateField
|
||||
// get reference to cellCells
|
||||
const labelListList& cc = fromMesh_.cellCells();
|
||||
|
||||
forAll (toF, celli)
|
||||
forAll(toF, celli)
|
||||
{
|
||||
if (adr[celli] != -1)
|
||||
{
|
||||
@ -97,7 +97,7 @@ void Foam::meshToMesh::interpolateField
|
||||
// Cell-Point interpolation
|
||||
interpolationCellPoint<Type> interpolator(fromVf);
|
||||
|
||||
forAll (toF, celli)
|
||||
forAll(toF, celli)
|
||||
{
|
||||
if (adr[celli] != -1)
|
||||
{
|
||||
@ -206,7 +206,7 @@ void Foam::meshToMesh::interpolate
|
||||
{
|
||||
interpolateInternalField(toVf, fromVf, ord);
|
||||
|
||||
forAll (toMesh_.boundaryMesh(), patchi)
|
||||
forAll(toMesh_.boundaryMesh(), patchi)
|
||||
{
|
||||
const fvPatch& toPatch = toMesh_.boundary()[patchi];
|
||||
|
||||
@ -338,7 +338,7 @@ Foam::meshToMesh::interpolate
|
||||
boundaryAddressing_.size()
|
||||
);
|
||||
|
||||
forAll (boundaryAddressing_, patchI)
|
||||
forAll(boundaryAddressing_, patchI)
|
||||
{
|
||||
patchFields.set
|
||||
(
|
||||
|
||||
Reference in New Issue
Block a user