mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-12-28 03:37:59 +00:00
STYLE: use labelUList typedef instead of UList<label> or unallocLabelList
This commit is contained in:
@ -128,7 +128,7 @@ Foam::mirrorFvMesh::mirrorFvMesh(const IOobject& io)
|
||||
// Distribute internal faces
|
||||
labelListList newCellFaces(oldCells.size());
|
||||
|
||||
const unallocLabelList& oldOwnerStart = lduAddr().ownerStartAddr();
|
||||
const labelUList& oldOwnerStart = lduAddr().ownerStartAddr();
|
||||
|
||||
forAll(newCellFaces, cellI)
|
||||
{
|
||||
@ -168,7 +168,7 @@ Foam::mirrorFvMesh::mirrorFvMesh(const IOobject& io)
|
||||
curInsBouFace = false;
|
||||
|
||||
// Get faceCells for face insertion
|
||||
const unallocLabelList& curFaceCells = curPatch.faceCells();
|
||||
const labelUList& curFaceCells = curPatch.faceCells();
|
||||
const label curStart = curPatch.start();
|
||||
|
||||
forAll(curPatch, faceI)
|
||||
|
||||
Reference in New Issue
Block a user