mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
clashing names of temporaries
This commit is contained in:
@ -45,7 +45,7 @@ Foam::linearUpwind<Type>::correction
|
||||
(
|
||||
IOobject
|
||||
(
|
||||
"linearUpwindCorrection(" + vf.name() + ')',
|
||||
"linearUpwind::correction(" + vf.name() + ')',
|
||||
mesh.time().timeName(),
|
||||
mesh,
|
||||
IOobject::NO_READ,
|
||||
|
||||
@ -131,9 +131,12 @@ public:
|
||||
(
|
||||
IOobject
|
||||
(
|
||||
vf.name(),
|
||||
"cubic::correction(" + vf.name() +')',
|
||||
mesh.time().timeName(),
|
||||
mesh
|
||||
mesh,
|
||||
IOobject::NO_READ,
|
||||
IOobject::NO_WRITE,
|
||||
false
|
||||
),
|
||||
surfaceInterpolationScheme<Type>::interpolate(vf, kSc, -kSc)
|
||||
)
|
||||
|
||||
@ -133,7 +133,7 @@ public:
|
||||
(
|
||||
IOobject
|
||||
(
|
||||
vf.name(),
|
||||
"localMax::interpolate(" + vf.name() + ')',
|
||||
mesh.time().timeName(),
|
||||
mesh
|
||||
),
|
||||
|
||||
@ -133,7 +133,7 @@ public:
|
||||
(
|
||||
IOobject
|
||||
(
|
||||
vf.name(),
|
||||
"localMin::interpolate(" + vf.name() + ')',
|
||||
mesh.time().timeName(),
|
||||
mesh
|
||||
),
|
||||
|
||||
@ -144,7 +144,7 @@ public:
|
||||
(
|
||||
IOobject
|
||||
(
|
||||
vf.name(),
|
||||
"skewCorrected::skewCorrection(" + vf.name() + ')',
|
||||
mesh.time().timeName(),
|
||||
mesh
|
||||
),
|
||||
|
||||
Reference in New Issue
Block a user