
26 Mar
2006
26 Mar
'06
10:25 p.m.
template<class point_rep, class duration_rep> inline void period<point_rep,duration_rep>::expand(const duration_rep& d) { begin_ = begin_ - d; last_ = last_ + d; }
Jeff
thanks Jeff,nice patch. but if I want period to get smaller? I have to go with a tmp period object? are you planing to add a method for this also? I don't want to play with boost::date_time and do it by myself becouse the source will be open to others and I want to use the 'standard' boost. this patch will be in 1.34? thanks for any advise.