Thread.cpp: Explicitly state difference type in thread_ctrl::wait_for_accurate
This commit is contained in:
@@ -2427,7 +2427,7 @@ void thread_ctrl::wait_for_accurate(u64 usec)
|
|||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
usec = (until - current).count();
|
usec = std::chrono::duration_cast<std::chrono::microseconds>(until - current).count();
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user