localEulerDdt: Removed unnecessary template qualifiers

This commit is contained in:
Henry Weller
2015-06-29 14:18:24 +01:00
parent fd9d07413a
commit 2aa91c8f40

View File

@ -46,7 +46,7 @@ const Foam::volScalarField& Foam::fv::localEulerDdt::localRDeltaT
const fvMesh& mesh const fvMesh& mesh
) )
{ {
return mesh.objectRegistry::template lookupObject<volScalarField> return mesh.objectRegistry::lookupObject<volScalarField>
( (
mesh.time().subCycling() ? rSubDeltaTName : rDeltaTName mesh.time().subCycling() ? rSubDeltaTName : rDeltaTName
); );
@ -65,7 +65,7 @@ Foam::tmp<Foam::volScalarField> Foam::fv::localEulerDdt::localRSubDeltaT
( (
rSubDeltaTName, rSubDeltaTName,
nAlphaSubCycles nAlphaSubCycles
*mesh.objectRegistry::template lookupObject<volScalarField> *mesh.objectRegistry::lookupObject<volScalarField>
( (
rDeltaTName rDeltaTName
) )