On 8/18/13, Matthew Dempsky <[email protected]> wrote: > On Sun, Aug 18, 2013 at 2:43 AM, patrick keshishian <[email protected]> > 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
