From 97122cf1f7ba03ecafd6aef72a20cfd46a8103ec Mon Sep 17 00:00:00 2001 From: John Wiegley Date: Wed, 18 Nov 2009 16:44:07 -0500 Subject: [PATCH] Wasn't serializing date_range_t::end_inclusive member --- src/times.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/times.h b/src/times.h index 1c9d812e..826937bb 100644 --- a/src/times.h +++ b/src/times.h @@ -449,6 +449,7 @@ private: void serialize(Archive& ar, const unsigned int /* version */) { ar & range_begin; ar & range_end; + ar & end_inclusive; } #endif // HAVE_BOOST_SERIALIZATION };