File tree 2 files changed +4
-2
lines changed
2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -1572,7 +1572,8 @@ pub mod nightly_options {
1572
1572
1573
1573
pub fn check_nightly_options ( matches : & getopts:: Matches , flags : & [ RustcOptGroup ] ) {
1574
1574
let has_z_unstable_option = matches. opt_strs ( "Z" ) . iter ( ) . any ( |x| * x == "unstable-options" ) ;
1575
- let really_allows_unstable_options = UnstableFeatures :: from_environment ( ) . is_nightly_build ( ) ;
1575
+ let really_allows_unstable_options = UnstableFeatures :: from_environment ( )
1576
+ . is_nightly_build ( ) ;
1576
1577
1577
1578
for opt in flags. iter ( ) {
1578
1579
if opt. stability == OptionStability :: Stable {
Original file line number Diff line number Diff line change @@ -649,7 +649,8 @@ impl RustcDefaultCalls {
649
649
}
650
650
}
651
651
PrintRequest :: Cfg => {
652
- let allow_unstable_cfg = UnstableFeatures :: from_environment ( ) . is_nightly_build ( ) ;
652
+ let allow_unstable_cfg = UnstableFeatures :: from_environment ( )
653
+ . is_nightly_build ( ) ;
653
654
654
655
for cfg in cfg {
655
656
if !allow_unstable_cfg && GatedCfg :: gate ( & * cfg) . is_some ( ) {
You can’t perform that action at this time.
0 commit comments