clashing names of temporaries

This commit is contained in:
mattijs
2009-08-25 13:50:01 +01:00
parent cc9c4fd32a
commit f8db210a81
5 changed files with 9 additions and 6 deletions

View File

@ -45,7 +45,7 @@ Foam::linearUpwind<Type>::correction
(
IOobject
(
"linearUpwindCorrection(" + vf.name() + ')',
"linearUpwind::correction(" + vf.name() + ')',
mesh.time().timeName(),
mesh,
IOobject::NO_READ,

View File

@ -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)
)

View File

@ -133,7 +133,7 @@ public:
(
IOobject
(
vf.name(),
"localMax::interpolate(" + vf.name() + ')',
mesh.time().timeName(),
mesh
),

View File

@ -133,7 +133,7 @@ public:
(
IOobject
(
vf.name(),
"localMin::interpolate(" + vf.name() + ')',
mesh.time().timeName(),
mesh
),

View File

@ -144,7 +144,7 @@ public:
(
IOobject
(
vf.name(),
"skewCorrected::skewCorrection(" + vf.name() + ')',
mesh.time().timeName(),
mesh
),