mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
STYLE: document const-ness of isA, refCast
This commit is contained in:
@ -66,8 +66,8 @@ labelList procNeighbours(const polyMesh& mesh)
|
||||
|
||||
forAll(mesh.boundaryMesh(), patchi)
|
||||
{
|
||||
const processorPolyPatch* procPatch =
|
||||
isA<const processorPolyPatch>(mesh.boundaryMesh()[patchi]);
|
||||
const auto* procPatch =
|
||||
isA<processorPolyPatch>(mesh.boundaryMesh()[patchi]);
|
||||
|
||||
if (procPatch)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user