mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
localEulerDdt: Removed unnecessary template qualifiers
This commit is contained in:
@ -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
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user