$include_dir="/home/hyper-archives/boost-users/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-users] Solved Re: Persisting __int64 (or long long) with boost::serialization?
From: Sandy Walsh (swalsh_at_[hidden])
Date: 2009-05-20 07:48:24
Seems the problem was how I was using the & operator.
I changed my save() method innards from:
ar & get_when();
to
ar & when;
and it compiled fine. I suspect I left a const off on the accessors
(which I'll test shortly).
Sorry for the false alarm and thanks again Steven.
-S