Corrected for Clang

This commit is contained in:
Henry
2013-11-10 13:59:26 +00:00
parent e4b0fcc23b
commit 81f824b230

View File

@ -33,7 +33,7 @@ License
namespace Foam namespace Foam
{ {
defineTypeNameAndDebug(nearWallFields, 0); defineTypeNameAndDebug(nearWallFields, 0);
} }
@ -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)
{ {