mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-12-28 03:37:59 +00:00
STYLE: more consistent use of labelUList and labelUIndList typedefs
This commit is contained in:
@ -443,7 +443,6 @@ int main(int argc, char *argv[])
|
||||
}
|
||||
|
||||
|
||||
|
||||
indirectPrimitivePatch extrudePatch
|
||||
(
|
||||
IndirectList<face>
|
||||
|
||||
@ -521,8 +521,8 @@ labelListList globalEdgeFaces
|
||||
label findUncoveredPatchFace
|
||||
(
|
||||
const fvMesh& mesh,
|
||||
const UIndirectList<label>& extrudeMeshFaces,// mesh faces that are extruded
|
||||
const label meshEdgeI // mesh edge
|
||||
const labelUIndList& extrudeMeshFaces, // mesh faces that are extruded
|
||||
const label meshEdgeI // mesh edge
|
||||
)
|
||||
{
|
||||
// Make set of extruded faces.
|
||||
@ -549,6 +549,7 @@ label findUncoveredPatchFace
|
||||
return facei;
|
||||
}
|
||||
}
|
||||
|
||||
return -1;
|
||||
}
|
||||
|
||||
@ -557,8 +558,8 @@ label findUncoveredPatchFace
|
||||
label findUncoveredCyclicPatchFace
|
||||
(
|
||||
const fvMesh& mesh,
|
||||
const UIndirectList<label>& extrudeMeshFaces,// mesh faces that are extruded
|
||||
const label meshEdgeI // mesh edge
|
||||
const labelUIndList& extrudeMeshFaces, // mesh faces that are extruded
|
||||
const label meshEdgeI // mesh edge
|
||||
)
|
||||
{
|
||||
// Make set of extruded faces.
|
||||
@ -585,6 +586,7 @@ label findUncoveredCyclicPatchFace
|
||||
return facei;
|
||||
}
|
||||
}
|
||||
|
||||
return -1;
|
||||
}
|
||||
|
||||
@ -712,7 +714,7 @@ void countExtrudePatches
|
||||
label facei = findUncoveredPatchFace
|
||||
(
|
||||
mesh,
|
||||
UIndirectList<label>(extrudeMeshFaces, eFaces),
|
||||
labelUIndList(extrudeMeshFaces, eFaces),
|
||||
extrudeMeshEdges[edgeI]
|
||||
);
|
||||
|
||||
@ -934,7 +936,7 @@ void addCoupledPatches
|
||||
label facei = findUncoveredCyclicPatchFace
|
||||
(
|
||||
mesh,
|
||||
UIndirectList<label>(extrudeMeshFaces, eFaces),
|
||||
labelUIndList(extrudeMeshFaces, eFaces),
|
||||
extrudeMeshEdges[edgeI]
|
||||
);
|
||||
|
||||
@ -2242,7 +2244,7 @@ int main(int argc, char *argv[])
|
||||
label facei = findUncoveredPatchFace
|
||||
(
|
||||
mesh,
|
||||
UIndirectList<label>(extrudeMeshFaces, eFaces),
|
||||
labelUIndList(extrudeMeshFaces, eFaces),
|
||||
extrudeMeshEdges[edgeI]
|
||||
);
|
||||
|
||||
|
||||
@ -299,7 +299,7 @@ void Foam::conformalVoronoiMesh::writeMesh(const fileName& instance)
|
||||
// IOobject::AUTO_WRITE,
|
||||
// false
|
||||
// ),
|
||||
// UIndirectList<label>
|
||||
// labelUIndList
|
||||
// (
|
||||
// vertexToDualAddressing,
|
||||
// pointToDelaunayVertex
|
||||
|
||||
Reference in New Issue
Block a user