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:
@ -124,8 +124,8 @@ void Foam::fluentFvMesh::writeFluentMesh() const
|
||||
fluentMeshFile
|
||||
<< "))" << std::endl << std::endl;
|
||||
|
||||
const unallocLabelList& own = owner();
|
||||
const unallocLabelList& nei = neighbour();
|
||||
const labelUList& own = owner();
|
||||
const labelUList& nei = neighbour();
|
||||
|
||||
const faceList& fcs = faces();
|
||||
|
||||
|
||||
@ -138,7 +138,7 @@ Foam::label Foam::checkTopology
|
||||
{
|
||||
if (patches[patchI].coupled())
|
||||
{
|
||||
const unallocLabelList& owners = patches[patchI].faceCells();
|
||||
const labelUList& owners = patches[patchI].faceCells();
|
||||
|
||||
forAll(owners, i)
|
||||
{
|
||||
|
||||
@ -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