Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Development
openfoam
Commits
1fb786eb
Commit
1fb786eb
authored
Oct 30, 2008
by
mattijs
Browse files
removed transfer; delegate to List instead
parent
4b90cc4c
Changes
2
Hide whitespace changes
Inline
Side-by-side
src/OpenFOAM/fields/Fields/Field/Field.C
View file @
1fb786eb
...
...
@@ -575,20 +575,6 @@ void Field<Type>::replace
}
template
<
class
Type
>
void
Field
<
Type
>::
transfer
(
Field
<
Type
>&
f
)
{
List
<
Type
>::
transfer
(
f
);
}
template
<
class
Type
>
void
Field
<
Type
>::
transfer
(
List
<
Type
>&
lst
)
{
List
<
Type
>::
transfer
(
lst
);
}
template
<
class
Type
>
tmp
<
Field
<
Type
>
>
Field
<
Type
>::
T
()
const
{
...
...
src/OpenFOAM/fields/Fields/Field/Field.H
View file @
1fb786eb
...
...
@@ -297,12 +297,6 @@ public:
//- Replace a component field of the field
void
replace
(
const
direction
,
const
cmptType
&
);
//- Transfer the contents of the argument Field into this Field
void
transfer
(
Field
<
Type
>&
);
//- Transfer the contents of the argument List into this Field
void
transfer
(
List
<
Type
>&
);
//- Return the field transpose (only defined for second rank tensors)
tmp
<
Field
<
Type
>
>
T
()
const
;
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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