Remove .internalField() clutter for const-access to the internal field

This commit is contained in:
Henry Weller
2016-04-28 12:37:31 +01:00
parent ea5401c770
commit 15b36331fe
21 changed files with 64 additions and 64 deletions

View File

@ -51,9 +51,9 @@ correction
Field<Type>& sfCorr = tsfCorr.ref().internalField();
const pointField& points = mesh.points();
const pointField& C = mesh.C().internalField();
const pointField& C = mesh.C();
const faceList& faces = mesh.faces();
const scalarField& w = mesh.weights().internalField();
const scalarField& w = mesh.weights();
const labelList& owner = mesh.owner();
const labelList& neighbour = mesh.neighbour();