25 Aug
2009
25 Aug
'09
7:10 p.m.
On Tue, Aug 25, 2009 at 3:57 PM, Jeff
Flinn
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
You guys are correct, I thought it was a bug because when using the xml archive it was working like this thanks :) -- Paul Eipper