@ -2,6 +2,23 @@
namespace TimeSpec
{
static
inline
timespec
is_newer(const timespec &t0_,
const timespec &t1_)
if(t0_.tv_sec > t1_.tv_sec)
return t0_;
if(t0_.tv_sec == t1_.tv_sec)
if(t0_.tv_nsec > t1_.tv_nsec)
}
return t1_;