Mir

Code review comment for lp:~andreas-pokorny/mir/use-realtime-clock-for-input-events

Revision history for this message
Alan Griffiths (alan-griffiths) wrote :

+ return std::chrono::nanoseconds(t.tv_sec*1000000000LL + t.tv_nsec);

Why not:

     return std::chrono::seconds(t.tv_sec) + std::chrono::nanoseconds(t.tv_nsec);

« Back to merge proposal