File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Expand file tree Collapse file tree 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 {
15721572
15731573 pub fn check_nightly_options ( matches : & getopts:: Matches , flags : & [ RustcOptGroup ] ) {
15741574 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 ( ) ;
15761577
15771578 for opt in flags. iter ( ) {
15781579 if opt. stability == OptionStability :: Stable {
Original file line number Diff line number Diff line change @@ -649,7 +649,8 @@ impl RustcDefaultCalls {
649649 }
650650 }
651651 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 ( ) ;
653654
654655 for cfg in cfg {
655656 if !allow_unstable_cfg && GatedCfg :: gate ( & * cfg) . is_some ( ) {
You can’t perform that action at this time.
0 commit comments