On 8/18/13, Matthew Dempsky <matt...@dempsky.org> wrote:
> On Sun, Aug 18, 2013 at 2:43 AM, patrick keshishian <sids...@boxsoft.com>
> wrote:
>> + bt::timeval::timeval(const ::timeval &t)
>> +-  : tv_sec(t.tv_sec), tv_usec(t.tv_usec)
>> +-{ }
>> ++{ tv_sec = t.tv_sec; tv_usec = t.tv_usec; }
>
> What's the point of these changes?

The bt::timeval struct's definition changed. tv_sec and tv_usec are
no longer direct members, and can not be initialized as before.

--patrick

Reply via email to