mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
Further standardization of loop index naming: pointI -> pointi, patchI -> patchi
This commit is contained in:
@ -211,12 +211,12 @@ int main(int argc, char *argv[])
|
||||
{
|
||||
labelList cellPoints(curBlockCells[blockCelli].size());
|
||||
|
||||
forAll(cellPoints, pointI)
|
||||
forAll(cellPoints, pointi)
|
||||
{
|
||||
cellPoints[pointI] =
|
||||
cellPoints[pointi] =
|
||||
oldToNew
|
||||
[
|
||||
curBlockCells[blockCelli][pointI]
|
||||
curBlockCells[blockCelli][pointi]
|
||||
+ blockOffsets[blockI]
|
||||
];
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user