mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
Corrected for Clang
This commit is contained in:
@ -72,8 +72,8 @@ void Foam::nearWallFields::calcAddressing()
|
|||||||
label patchI = iter.key();
|
label patchI = iter.key();
|
||||||
const fvPatch& patch = mesh.boundary()[patchI];
|
const fvPatch& patch = mesh.boundary()[patchI];
|
||||||
|
|
||||||
vectorField nf = patch.nf();
|
vectorField nf(patch.nf());
|
||||||
vectorField faceCellCentres = patch.patch().faceCellCentres();
|
vectorField faceCellCentres(patch.patch().faceCellCentres());
|
||||||
|
|
||||||
forAll(patch, patchFaceI)
|
forAll(patch, patchFaceI)
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user