BUG: adding templated argument to Field

This commit is contained in:
sergio 2014-10-15 12:28:49 +01:00
parent f2ddca6433
commit afda83faa5

View file

@ -2,7 +2,7 @@
========= | ========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | \\ / O peration |
\\ / A nd | Copyright (C) 2013 OpenFOAM Foundation \\ / A nd | Copyright (C) 2013-2014 OpenFOAM Foundation
\\/ M anipulation | \\/ M anipulation |
------------------------------------------------------------------------------- -------------------------------------------------------------------------------
License License
@ -201,8 +201,8 @@ void Foam::externalCoupledTemperatureMixedFvPatchScalarField::transferData
{ {
const Field<scalar>& magSf = magSfs[procI]; const Field<scalar>& magSf = magSfs[procI];
const Field<scalar>& value = values[procI]; const Field<scalar>& value = values[procI];
const Field& qDot = qDots[procI]; const Field<scalar>& qDot = qDots[procI];
const Field& htc = htcs[procI]; const Field<scalar>& htc = htcs[procI];
forAll(magSf, faceI) forAll(magSf, faceI)
{ {