$include_dir="/home/hyper-archives/boost-users/include"; include("$include_dir/msg-header.inc") ?>
Subject: Re: [Boost-users] Boost::Serialize, serializing std::basic_string
From: Robert Ramey (ramey_at_[hidden])
Date: 2008-10-31 13:38:04
basic_string with your own allocator is not the same type as basic_string
with
the default allocator.
Look at hos serialization of std::string is implemented and make your own
using that as an example.
Robert Ramey