Skip to content
Snippets Groups Projects
Commit f3474dad authored by mattijs's avatar mattijs
Browse files

BUG: rigidBodyMotionState: not readable in binary. Fixes #871.

parent 387ee6b2
Branches
Tags
No related merge requests found
......@@ -357,7 +357,8 @@ bool Foam::rigidBodyMeshMotion::writeObject
);
model_.state().write(dict);
return dict.regIOobject::write();
// Force ascii writing
return dict.regIOobject::writeObject(IOstream::ASCII, ver, cmp, valid);
}
......
......@@ -301,7 +301,8 @@ bool Foam::rigidBodyMeshMotionSolver::writeObject
);
model_.state().write(dict);
return dict.regIOobject::write();
// Force ascii writing
return dict.regIOobject::writeObject(IOstream::ASCII, ver, cmp, valid);
}
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment