-
-
Notifications
You must be signed in to change notification settings - Fork 14.2k
std: merge sys::pal::common and sys_common into sys::helpers
#150047
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Conversation
|
rustbot has assigned @Mark-Simulacrum. Use |
|
The job Click to see the possible cause of the failure (guessed by this bot) |
| // Computes (value*numerator)/denom without overflow, as long as both (numerator*denom) and the | ||
| // overall result fit into i64 (which is the case for our time conversions). |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
| // Computes (value*numerator)/denom without overflow, as long as both (numerator*denom) and the | |
| // overall result fit into i64 (which is the case for our time conversions). | |
| /// Computes (value*numerator)/denom without overflow, as long as both (numerator*denom) and the | |
| /// overall result fit into i64 (which is the case for our time conversions). |
?
As per #117276, this removes
sys_commonand moves its functionality and that ofsys::pal::commoninto a newly createdsys::helpersmodule.