mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
Remove .internalField() clutter for const-access to the internal field
This commit is contained in:
@ -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();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user