Skip to content

Commit c14508f

Browse files
committed
Add missing #![feature(rustc_private)] annotation
1 parent 286ac62 commit c14508f

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

src/libfmt_macros/lib.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
test(attr(deny(warnings))))]
1212

1313
#![feature(nll)]
14+
#![feature(rustc_private)]
1415

1516
pub use self::Piece::*;
1617
pub use self::Position::*;

src/libtest/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
#![feature(asm)]
2626
#![cfg_attr(stage0, feature(cfg_target_vendor))]
2727
#![feature(fnbox)]
28-
#![cfg_attr(any(unix, target_os = "cloudabi"), feature(libc))]
28+
#![cfg_attr(any(unix, target_os = "cloudabi"), feature(libc, rustc_private))]
2929
#![feature(nll)]
3030
#![feature(set_stdio)]
3131
#![feature(panic_unwind)]

0 commit comments

Comments
 (0)