$include_dir="/home/hyper-archives/boost-users/include"; include("$include_dir/msg-header.inc") ?>
From: Bill Lear (rael_at_[hidden])
Date: 2007-04-24 19:14:08
On Tuesday, April 24, 2007 at 16:07:03 (-0700) Oleg V. Zhylin writes:
>...
> // If your program fails to compile here, its most likely due
>to
> // not specifying an nvp wrapper around the variable to
> // be serialized.
I believe you need the BOOST_SERIALIZATION_NVP wrapper, here:
> ar & i;
around i, thus:
ar & BOOST_SERIALIZATION_NVP(i);
Bill