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
528ceff8
Commit
528ceff8
authored
Nov 03, 2019
by
Mark OLESEN
Committed by
Andrew Heather
Nov 03, 2019
Browse files
BUG: genericPointPatchField removed "value" entry (fixes
#1474
)
parent
aaa27eae
Changes
3
Hide whitespace changes
Inline
Side-by-side
src/genericPatchFields/genericFaPatchField/genericFaPatchField.C
View file @
528ceff8
...
...
@@ -701,6 +701,7 @@ void Foam::genericFaPatchField<Type>::write(Ostream& os) const
if
(
key
==
"type"
||
key
==
"value"
)
{
// NB: "type" written first, "value" written last
continue
;
}
else
if
...
...
src/genericPatchFields/genericFvsPatchField/genericFvsPatchField.C
View file @
528ceff8
...
...
@@ -699,6 +699,7 @@ void Foam::genericFvsPatchField<Type>::write(Ostream& os) const
if
(
key
==
"type"
||
key
==
"value"
)
{
// NB: "type" written first, "value" written last
continue
;
}
else
if
...
...
src/genericPatchFields/genericPointPatchField/genericPointPatchField.C
View file @
528ceff8
...
...
@@ -480,8 +480,9 @@ void Foam::genericPointPatchField<Type>::write(Ostream& os) const
{
const
keyType
&
key
=
dEntry
.
keyword
();
if
(
key
==
"type"
||
key
==
"value"
)
if
(
key
==
"type"
)
{
// NB: "type" written first, no special treatment for "value"
continue
;
}
else
if
...
...
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