25 Aug
2009
25 Aug
'09
6:57 p.m.
Paul Eipper wrote:
Hi,
I've hit what I believe is a bug in boost serialization, at least on binary and text archive modes.
void save() { ... oa << this; }; void load() { std::ifstream ifs(filename.c_str()); // needs binary mode ... ia >> *this; // your not loading what you serialized? }; Jeff