9 Sep
2010
9 Sep
'10
9:55 p.m.
Jonathan Klein wrote:
Hi, i'm tring to serialize a std::map
but get strange compiler errors.
This comes up all the time. You can't serialize a pointer to a prmiitive. Wrap the primitive in a class and serialize that. Also see BOOST_SERIALIZATION_STRONG_TYPEDEF
Also i tried to serialize a **class, which also failed.
This is not supported. There is an enhancement request to do so though. Robert Ramey