$include_dir="/home/hyper-archives/boost-users/include"; include("$include_dir/msg-header.inc") ?>
From: Klaus Nowikow (nowikow_at_[hidden])
Date: 2005-04-18 12:47:06
Klaus Nowikow <nowikow <at> decomsys.com> writes:
> when I compile the code below (with MSVC 7.1), I get an error telling me that
> "'serialize' : is not a member of 'std::vector<_Ty>'". I will post the
> exact error message below the code.
Hm. I did som more resarch and found the following:
Whe I either remove the BOOST_SERIALIZATION_NVP() macros
or change the lines
ar << BOOST_SERIALIZATION_NVP(object);
and
ar >> BOOST_SERIALIZATION_NVP(object);
to
ar & BOOST_SERIALIZATION_NVP(object);
it also works.
Regards,
Klaus