
2 Mar
2009
2 Mar
'09
6:06 p.m.
Hi Robert, Robert Ramey skrev:
Move serialize out of the detail namespace.
replace ... template<class Archive, class T, unsigned N, class Allocator> inline void serialize(Archive& ar, auto_buffer<T, N, Allocator>& c, const unsigned int version) { boost::serialization::split_free(ar, c, version); } }
with
... } template<class Archive, class T, unsigned N, class Allocator> inline void serialize(Archive& ar, auto_buffer<T, N, Allocator>& c, const unsigned int version) { boost::serialization::split_free(ar, c, version); }
What is this the answer for? Does it answer how I make use of the optmized array code already in Boost.Serialization? -Thorsten PS. I've atatched the code that know actually compiles.