mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
STYLE: use labelUList typedef instead of UList<label> or unallocLabelList
This commit is contained in:
@ -132,7 +132,7 @@ void Foam::inverseFaceDistanceDiffusivity::correct()
|
||||
{
|
||||
fvsPatchScalarField& bfld = faceDiffusivity_.boundaryField()[patchI];
|
||||
|
||||
const unallocLabelList& faceCells = bfld.patch().faceCells();
|
||||
const labelUList& faceCells = bfld.patch().faceCells();
|
||||
|
||||
if (patchSet.found(patchI))
|
||||
{
|
||||
|
||||
@ -161,7 +161,7 @@ void Foam::inversePointDistanceDiffusivity::correct()
|
||||
|
||||
if (patchSet.found(patchI))
|
||||
{
|
||||
const unallocLabelList& faceCells = bfld.patch().faceCells();
|
||||
const labelUList& faceCells = bfld.patch().faceCells();
|
||||
|
||||
forAll(bfld, i)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user