Hi,
I am one of upstream authors, and I've prepared the patch that fixes
this bug. (https://bugs.debian.org/746884)
I'm glad if you maintainers could take your time to merge this patch
into the package.
FYI, this patch is already in the trunk of upstream repository (rev 1697).
Thanks!
--
Katsuhiko Nishimra
[email protected]
Fix boost serialization compile error.
Index: molds-0.3.0/src/base/MolDSException.cpp
===================================================================
--- molds-0.3.0.orig/src/base/MolDSException.cpp
+++ molds-0.3.0/src/base/MolDSException.cpp
@@ -161,7 +161,7 @@ void MolDSException::serialize(Archive&
void MolDSException::Serialize(std::ostream& os){
boost::archive::text_oarchive oa(os);
- oa << this;
+ oa << (*this);
}
MolDSException MolDSException::Deserialize(std::istream& is){