Skip to content
Snippets Groups Projects
Commit 2aa91c8f authored by Henry Weller's avatar Henry Weller
Browse files

localEulerDdt: Removed unnecessary template qualifiers

parent fd9d0741
Branches
Tags
No related merge requests found
......@@ -46,7 +46,7 @@ const Foam::volScalarField& Foam::fv::localEulerDdt::localRDeltaT
const fvMesh& mesh
)
{
return mesh.objectRegistry::template lookupObject<volScalarField>
return mesh.objectRegistry::lookupObject<volScalarField>
(
mesh.time().subCycling() ? rSubDeltaTName : rDeltaTName
);
......@@ -65,7 +65,7 @@ Foam::tmp<Foam::volScalarField> Foam::fv::localEulerDdt::localRSubDeltaT
(
rSubDeltaTName,
nAlphaSubCycles
*mesh.objectRegistry::template lookupObject<volScalarField>
*mesh.objectRegistry::lookupObject<volScalarField>
(
rDeltaTName
)
......
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