Skip to content
Snippets Groups Projects
Commit 81f824b2 authored by Henry's avatar Henry
Browse files

Corrected for Clang

parent e4b0fcc2
Branches
Tags
No related merge requests found
......@@ -33,7 +33,7 @@ License
namespace Foam
{
defineTypeNameAndDebug(nearWallFields, 0);
defineTypeNameAndDebug(nearWallFields, 0);
}
......@@ -72,8 +72,8 @@ void Foam::nearWallFields::calcAddressing()
label patchI = iter.key();
const fvPatch& patch = mesh.boundary()[patchI];
vectorField nf = patch.nf();
vectorField faceCellCentres = patch.patch().faceCellCentres();
vectorField nf(patch.nf());
vectorField faceCellCentres(patch.patch().faceCellCentres());
forAll(patch, patchFaceI)
{
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment