We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
rust.overflow-checks-std
rust.overflow-checks
1 parent bcf7cf6 commit 905ed5fCopy full SHA for 905ed5f
src/bootstrap/config.rs
@@ -982,7 +982,8 @@ impl Config {
982
config.rust_debug_assertions_std =
983
debug_assertions_std.unwrap_or(config.rust_debug_assertions);
984
config.rust_overflow_checks = overflow_checks.unwrap_or(default);
985
- config.rust_overflow_checks_std = overflow_checks_std.unwrap_or(default);
+ config.rust_overflow_checks_std =
986
+ overflow_checks_std.unwrap_or(config.rust_overflow_checks);
987
988
config.rust_debug_logging = debug_logging.unwrap_or(config.rust_debug_assertions);
989
0 commit comments