Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Development
openfoam
Commits
78575272
Commit
78575272
authored
Dec 24, 2012
by
laurence
Browse files
COMP: Correct to compile with Clang
parent
21203782
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/regionCoupled/derivedFvPatchFields/energyRegionCoupled/energyRegionCoupledFvPatchScalarField.C
View file @
78575272
...
...
@@ -348,7 +348,7 @@ void Foam::energyRegionCoupledFvPatchScalarField::evaluate
label
patchi
=
patch
().
index
();
const
scalarField
&
pp
=
thermoPtr_
->
p
().
boundaryField
()[
patchi
];
const
scalarField
lWeights
=
weights
();
const
scalarField
lWeights
(
weights
()
)
;
scalarField
::
operator
=
(
...
...
@@ -416,8 +416,10 @@ patchNeighbourField() const
nbrThermoPtr_
->
T
().
internalField
(),
nbrFaceCells
);
scalarField
intNbrT
=
regionCoupledPatch_
.
regionCoupledPatch
().
interpolate
(
nbrIntT
);
scalarField
intNbrT
(
regionCoupledPatch_
.
regionCoupledPatch
().
interpolate
(
nbrIntT
)
);
label
patchi
=
patch
().
index
();
const
scalarField
&
pp
=
thermoPtr_
->
p
().
boundaryField
()[
patchi
];
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment