Skip to content

Commit cf1fc2c

Browse files
committed
appease tidy
1 parent 0dc2a95 commit cf1fc2c

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

src/librustc/session/config.rs

+2-1
Original file line numberDiff line numberDiff 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 {

src/librustc_driver/lib.rs

+2-1
Original file line numberDiff line numberDiff 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() {

0 commit comments

Comments
 (0)