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
c747e12b
Commit
c747e12b
authored
Jul 21, 2011
by
Henry
Browse files
syncToolsTemplates.C: Changed constructor syntax to keep the Intel compiler happy
parent
20ee9190
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/OpenFOAM/meshes/polyMesh/syncTools/syncToolsTemplates.C
View file @
c747e12b
...
...
@@ -1352,10 +1352,10 @@ void Foam::syncTools::syncBoundaryFaceList
label
sz
=
cycPatch
.
size
();
// Transform (copy of) data on both sides
Field
<
T
>
ownVals
=
SubField
<
T
>
(
faceValues
,
sz
,
ownStart
);
Field
<
T
>
ownVals
(
SubField
<
T
>
(
faceValues
,
sz
,
ownStart
)
)
;
top
(
nbrPatch
,
ownVals
);
Field
<
T
>
nbrVals
=
SubField
<
T
>
(
faceValues
,
sz
,
nbrStart
);
Field
<
T
>
nbrVals
(
SubField
<
T
>
(
faceValues
,
sz
,
nbrStart
)
)
;
top
(
cycPatch
,
nbrVals
);
label
i0
=
ownStart
;
...
...
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