mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
COMP: incorrect const (accidental change with 8eddcc072a)
This commit is contained in:
@ -751,7 +751,7 @@ Foam::conformalVoronoiMesh::createPolyMeshFromPoints
|
||||
|
||||
forAll(patches, p)
|
||||
{
|
||||
const label totalPatchSize = patchDicts[p].get<label>("nFaces");
|
||||
label totalPatchSize = patchDicts[p].get<label>("nFaces");
|
||||
|
||||
if
|
||||
(
|
||||
|
||||
@ -816,7 +816,7 @@ void Foam::conformalVoronoiMesh::writeMesh
|
||||
|
||||
forAll(patches, p)
|
||||
{
|
||||
const label totalPatchSize = patchDicts[p].get<label>("nFaces");
|
||||
label totalPatchSize = patchDicts[p].get<label>("nFaces");
|
||||
|
||||
if
|
||||
(
|
||||
|
||||
Reference in New Issue
Block a user