Skip to content
GitLab
Menu
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
651a64d6
Commit
651a64d6
authored
Oct 23, 2008
by
mattijs
Browse files
force ascii writing of IOdictionary
parent
96dac1cb
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/meshTools/searchableSurface/distributedTriSurfaceMesh.C
View file @
651a64d6
...
...
@@ -2192,9 +2192,10 @@ bool Foam::distributedTriSurfaceMesh::writeObject
// Make sure dictionary goes to same directory as surface
const_cast
<
fileName
&>
(
dict_
.
instance
())
=
searchableSurface
::
instance
();
// Dictionary needs to be written in ascii - binary output not supported.
return
triSurfaceMesh
::
writeObject
(
fmt
,
ver
,
cmp
)
&&
dict_
.
writeObject
(
fmt
,
ver
,
cmp
);
&&
dict_
.
writeObject
(
IOstream
::
ASCII
,
ver
,
cmp
);
}
...
...
Write
Preview
Supports
Markdown
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