mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
force ascii writing of IOdictionary
This commit is contained in:
@ -2192,9 +2192,10 @@ bool Foam::distributedTriSurfaceMesh::writeObject
|
|||||||
// Make sure dictionary goes to same directory as surface
|
// Make sure dictionary goes to same directory as surface
|
||||||
const_cast<fileName&>(dict_.instance()) = searchableSurface::instance();
|
const_cast<fileName&>(dict_.instance()) = searchableSurface::instance();
|
||||||
|
|
||||||
|
// Dictionary needs to be written in ascii - binary output not supported.
|
||||||
return
|
return
|
||||||
triSurfaceMesh::writeObject(fmt, ver, cmp)
|
triSurfaceMesh::writeObject(fmt, ver, cmp)
|
||||||
&& dict_.writeObject(fmt, ver, cmp);
|
&& dict_.writeObject(IOstream::ASCII, ver, cmp);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user