Further standardization of loop index naming: pointI -> pointi, patchI -> patchi

This commit is contained in:
Henry Weller
2016-05-18 21:20:42 +01:00
parent ac632e7984
commit 67de20df25
365 changed files with 4877 additions and 4877 deletions

View File

@ -2,7 +2,7 @@
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration |
\\ / A nd | Copyright (C) 2011-2015 OpenFOAM Foundation
\\ / A nd | Copyright (C) 2011-2016 OpenFOAM Foundation
\\/ M anipulation |
-------------------------------------------------------------------------------
License
@ -125,11 +125,11 @@ void Foam::setToPointZone::applyToSet
forAllConstIter(pointSet, fSet, iter)
{
label pointI = iter.key();
label pointi = iter.key();
if (!fzSet.found(pointI))
if (!fzSet.found(pointi))
{
newAddressing.append(pointI);
newAddressing.append(pointi);
}
}