
2 Mar
2009
2 Mar
'09
5:48 p.m.
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); } Robert Ramey