19 May
2009
19 May
'09
9:43 p.m.
AMDG Sandy Walsh wrote:
Sorry for the n00b question, but I'm trying to serialize some unsigned __int64 member variables using boost::serialization.
I added the following to my header:
namespace boost { namespace serialization { template<class Archive> void load(Archive & ar, unsigned __int64& big, const unsigned int version) ;
template<class Archive> void save(Archive & ar, unsigned __int64 big, const unsigned int version) ; } };
But the compiler still complains that it doesn't know how to handle that right-hand operand.
Is there something obvious here I'm missing?
See http://tinyurl.com/oqwk3v. In Christ, Steven Watanabe